html {
    background: linear-gradient(120deg, #f3b184 0%, #D49E8D 100%);
    background-size: 100% 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
    min-height: 100vh;
    padding-bottom: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    @media screen and (min-width: 600px) {
        padding-bottom: 0;
    }
    
}

ul, li, img {
    box-sizing: border-box;
}

body {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

a,
a:visited,
p {
    color: #868586;
    text-decoration: none;
}

h1 {
    color: #404042;
    font-size: 2rem;
    font-family: 'Zodiak', serif;
}

a,
p {
    font-size: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.navigation ul {
    display: flex;
    gap: 32px;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    padding: 32px 12px;
}

.navigation a {
    color: white;
}

.navigation img {
   height: 32px;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    background-color: #f3f3f3;
    border-radius: 12px;
    margin-top: 96px;
    padding: 64px 32px;
    width: 75%;

    @media screen and (min-width: 600px) {
        width: 75vw;
        padding: 120px 64px;
    }
}

.main img {
    -webkit-box-shadow: 2px 13px 50px -23px #868586;
    -moz-box-shadow: 2px 13px 50px -23px #868586;
    box-shadow: 2px 13px 50px -23px #868586;
    border-radius: 6px;
    max-width: 150px;
}

.main a {
    color: #ae4225;
}