@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Fjalla+One&display=swap'); 



body {
    background-color: #B3AF8F;
    margin: 0px;
    color: #2B3A67;
    font-family: "Fjalla One", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    justify-content: center;
}


nav {
    padding: 30px 50px;
    background-color: #FFC482;
    display: flex;
    font-size: 25px;
}


nav ul {
    display: flex;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

nav ul li a {
    padding: 14px 20px;
    text-decoration: none;
    color: #2B3A67;
    font-family: "Fjalla One", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.links {
    margin-left: auto;
}

#gallery {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gallery img {
    width: 400px;
    height: auto;
} 
button {
    background: #FFC482;
    color: #2B3A67;
    border: none;
    padding: 15px 30px;
    margin: 40px;
    border-radius: 12px;
    font-size: 30px;
    height: 80px;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

footer {
    background-color: #2B3A67;
    color: #ffffff;
}

footer a {
    text-decoration: none;
    color: gray;
}