body {
    background-color: #f9f5ed;
    font-family: "inter", "sans-serif";
    margin: 0 100px;
}

ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

li {
    align-items: center;
    display: flex;
}

ul li a {
    text-decoration: none;
    color: #000;
    margin: 15px;
}

main {
    display: flex;
    align-items: center;
}

.description {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

#hamburger {
    display: none;
}

section {
    width: 100%;
    display: flex;
    justify-content: center;
}

section img {
    width: 100%;
    max-width: 70%;
}

h1{
    font-size: 64px;
}

p, button{
    font-size: 18px;
}

button {
    background-color: #3B855B;
    color: white;
    border-radius: 8;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
}


@media screen and (max-width: 768px) {
    body {
        margin: 0 24px;
    }
    main {
        display: block;
    }

    h1{
        font-size: 48px;
    }

    section img {
        max-width: 0 12px;
    }

    #hamburger {
        display: block;
    }
    
}