* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --Cyan: hsl(179, 62%, 43%);
    --Bright-Yellow: hsl(71, 73%, 54%);


    --Light-Gray: hsl(204, 43%, 93%);
    --Grayish-Blue: hsl(218, 22%, 67%);

    --font-family: 'Karla'
}

body {
    background-color: var(--Light-Gray);
    font-family: var(--font-family);

    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.day {
    background-color: white;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 40px;
    color: rgb(165, 165, 165);

    h2 {
        margin-bottom: 20px;
        color: var(--Cyan);
    }

    h3 {
        color: var(--Bright-Yellow);
        margin-bottom: 20px;
    }

    p {
        display: flex;
        gap: 14px;
    }
}

.dollar {
    background-color: var(--Cyan);
    border-bottom-left-radius: 6px;
    padding: 40px;
    width: 50%;
    color: white;

    p {
        margin-top: 14px;
        font-weight: 100;
    }
}

.tutorial {
    background-color: rgb(74, 190, 189);
    border-bottom-right-radius: 6px;
    padding: 40px;
    width: 50%;
    color: white;

    font-weight: 100;
}

.gap-p {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.month {
    display: flex;
    align-items: center;
    gap: 8px;

    span {
        font-weight: 100;
        color: var(--Light-Gray);
    }
}

button {
    border: none;
    background-color: var(--Bright-Yellow);
    padding: 15px 86px;
    border-radius: 5px;
    margin-top: 30px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.315);

    color: white;
    font-family: var(--font-family);
}

.two {
    display: flex;

    h3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 500px) {

    body {
        display: flex;
        flex-direction: column;
    }

    main {
        padding: 32px;
        margin-top: 250px;
    }

    .two {
        display: flex;
        flex-direction: column;
    }

    .tutorial,
    .dollar {
        width: unset;
        border-radius: unset;
    }

    .tutorial {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        width: 100%;
    }

}

@media (min-height: 800px) {
    main {
        padding: 32px;
        margin-top: 0px;
    }
}