:root {
    --yellow: hsl(47, 88%, 63%);
    --white: hsl(0, 0%, 100%);
    --grey: hsl(0, 0%, 50%);
    --black: hsl(0, 0%, 7%);

}

* {
    font-family: "Figtree", sans-serif;
}

@media (max-width: 400px) {
    body {
        width: 375px;
        height: 812px;
        background-color: var(--yellow);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    main {
        width: 375px;
        height: 812px;
        margin-top: 360px;
        margin-left: 21.5px;
    }

    #container {
        background-color: var(--white);
        width: 279px;
        height: 453px;
        border: 1px solid var(--black);
        box-shadow: 5px 5px black;
        border-radius: 20px;
        padding: 24px;
    }

    #illustration {
        width: 279px;
        height: 200px;
        border-radius: 10px;
        margin: 0;
        object-fit: cover;
    }

    #texts {
        width: 279px;
        height: 173px;
        margin: 24px 0 24px 0;
    }

    #learn {
        padding: 4px 12px 4px 12px;
        width: 73px;
        height: 26px;
        font-weight: 900;
        background-color: var(--yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        margin: 0 0 12px 0;
        border-radius: 4px;
    }

    #publish {
        width: 200px;
        height: 18px;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 12px 0;
    }

    h1 {
        width: 279px;
        height: 30px;
        margin: 0 0 12px 0;
        font-size: 23.5px;
        font-weight: 900;
    }

    h1:hover {
        cursor: pointer;
        color: var(--yellow);
        transition: 0.2s;
    }

    #description {
        width: 279px;
        height: 63px;
        font-size: 16px;
        color: var(--grey);
        line-height: 23px;
        margin: 0;
    }

    #img-name {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 150px;
        height: 32px;
        margin: 0;
    }

    #profile-pic {
        width: 32px;
        height: 32px;
        border-radius: 99px;
    }

    #name {
        width: 120px;
        height: 21px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        color: var(--black);
        margin: 0 0 0 12px;
    }
}

@media (min-width: 400px) {
    body {
        width: 100%;
        height: 960px;
        background-color: var(--yellow);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    main {
        width: 384px;
        height: 960px;
        margin-top: 360px;
    }

    #container {
        background-color: var(--white);
        width: 336px;
        height: 488px;
        border: 1px solid var(--black);
        box-shadow: 8px 8px black;
        border-radius: 20px;
        padding: 24px;
    }

    #illustration {
        width: 336px;
        height: 200px;
        border-radius: 10px;
        margin: 0;

    }

    #texts {
        width: 336px;
        height: 200px;
        margin: 24px 0 24px 0;
    }

    #learn {
        padding: 4px;
        width: 82px;
        height: 29px;
        font-weight: 900;
        background-color: var(--yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        margin: 0 0 12px 0;
        border-radius: 4px;
    }

    #publish {
        width: 200px;
        height: 21px;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 12px 0;
    }

    h1 {
        width: 336px;
        height: 32px;
        margin: 0 0 12px 0;
        font-size: 25px;
        font-weight: 900;
    }

    h1:hover {
        cursor: pointer;
        color: var(--yellow);
        transition: 0.2s;
    }

    #description {
        width: 336px;
        height: 72px;
        font-size: 16px;
        color: var(--grey);
        line-height: 23px;
        margin: 0;
    }

    #img-name {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 150px;
        height: 32px;
        margin: 0;
    }

    #profile-pic {
        width: 32px;
        height: 32px;
        border-radius: 99px;
    }

    #name {
        width: 120px;
        height: 21px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        color: var(--black);
        margin: 0 0 0 12px;
    }
}