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

body {
    width: 100%;
    height: 100vh;
    background-color: #FFCD75;
    overflow: hidden;
    font-family: 'Roboto Slab', serif;
}

picture img {
    width: 409px;
    height: 293px;
}

.up {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    margin: 2rem 4rem 2rem 4rem;  
}

.up h1 {
    font-size: 2.6rem;
    color: #58190A;
}

.up p {
    font-size: 1.5rem;
    color: #58190A;
}

.information p {
    padding: 0.875rem 0;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.buttons,
span,
.buttons p {
    font-size: 1.5rem;
    color: #63422e
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.low {
    display: flex;
    background-color: #47130A;
    height: 100vh;
    justify-content: center;
    gap: 4rem;
    padding: 4rem;
    color: #FEECE0;
}

ul,
ol {
    padding-left: 1.75rem;
}

li {
    font-size: 1.2rem;
    font-family: 'Roboto Slab', serif;
}

.left>div,
.right>div {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-bottom: 2.1875rem;
}

.col1 h1,
.col2 h1 {
    font-size: 2.375rem;
}




@media (max-width: 768px) {
    body {
        overflow: visible;
    }

    .up {
        flex-direction: column;
        margin: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .up h1 {
        font-size: 2rem;
    }

    .up p {
        font-size: 1.2rem;
    }

    .low {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .left h1,
    .right h1 {
        font-size: 2rem;
    }

    ul,
    ol {
        padding-left: 1rem;
    }

    li {
        font-size: 1rem;
    }
}