@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Pacifico&display=swap');

body {
    margin: auto;
    padding: 5%;
    font-family: Outfit, sans-serif;
    text-align: center;
    background-color: lightpink;
    color: #492929;
    background-image: url("../images/back-left-top-K3BkMi-.jpg");
    background-position: left top;
     background-repeat: no-repeat;
    background-attachment: fixed;
}

#logo {
    max-width:75%;
}

.nav {
    margin-bottom: 5%;
    overflow: hidden;
}

.nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav ul li {
    display: inline;
    font-size: 2em;
    padding: 1%;
    font-family: Outfit;
}

.nav ul li a {
    text-decoration: none;
    color: #492929;
    transition: 0.2s ease-in;
}

.nav ul li a:hover, .dropdown:hover #dropbtn {
    font-size: 1.25em;
    transition: 0.2s ease-out;
}

.active {
    font-weight: 713;
}

button:hover {
    cursor: pointer;
}

button {
    background-color:#492929;
    color: white;
    padding: 0.5em;
    display: inline-flex;
}

footer img {
    margin-top: 1em;
    max-width: 100%;
}

@media screen and (max-width: 500px) {
    

}

@media screen and (min-width: 700px) {
    body {
        background-image: url("../images/back-left-top-K3BkMi-.jpg"), url("../images/back-right-bottom-AYzQPVY.jpg");
        background-position: left top, right bottom;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    
    .nav ul li {
        font-size: 1.5em;
   }

    footer img {
        max-width: 60%
    }

}

@media screen and (min-width: 1200px) {
    #logo {
        max-width: 50%;
    }

     .nav ul li {
    font-size: 2em;
    }

  footer img {
    max-width: 40%;
  }
}