*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: #F5DAAF;

}

/*fonts*/
.cherry-bomb-one-regular {
  font-family: "Cherry Bomb One", system-ui;
  font-weight: 400;
  font-style: normal;
}


.nunito-sans{
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}


body{
    line-height: 1.5;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

a{
    text-decoration: none;
}

/*fancy stuff*/
.zoom{
    transition: transform .2s;
    display: block;
}

.zoom.container{
    overflow: hidden;
    width: fit-content;
}

.zoom:hover{
    transform: scale(1.025);
}
/*navigation*/
nav{
    font-family: "Cherry Bomb One";
    display: flex;
    flex-direction: column;
}

nav ul{
    gap: 20px;
    display:flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 15px;
    padding:0;
}

nav ul li{
    margin: 0 8px;
}

nav li a{
    font-size: 25px;
}

nav img{
    width: 50%;
    min-width: 200px;
    max-width: 400px;
    height: auto;
    border-radius: 4px;
    margin:0 auto 40px auto;
    margin-bottom: 10px;
    display: block;
}

.content{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    align-items: start;
}

.content img{
    width: 100%;
    height: auto;
}

section p{
    padding-top: 0px;
}

/*typography*/
h1{
    font-family: "Cherry Bomb One";
    font-weight:900;
    font-size: 40px;
    line-height: 0.8;
    margin-bottom: 10px;
}

h2{
    font-family: "Cherry Bomb One";
    font-weight: 600;
    font-size: 35px;
    margin-top: 0px;
    margin-bottom: 10px;
}

h3{
    font-family: "Cherry Bomb One";
    font-size: 20px;
    font-weight: 300;
    margin-top: -25px;
    margin-bottom: 3px;
}

p{
    font-family: "Nunito Sans";
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
    line-height: 25px;
    margin-bottom: 15px;
    margin-top: 10px;
    
}

img{
    width: 100%;
    height: auto;
    margin-bottom: 0px;
}

/*footer*/
footer{
    font-family: "Cherry Bomb One";
    font-size: 20px;
    gap: 20px;
}

.footer-nav{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.left{
    display: flex;
    flex-direction: column;
    align-items: left;
}

.right{
    display: flex;
    flex-direction: column;
    align-items: end;
}

footer address{
    font-family: "Nunito Sans";
    font-size: 13px;
    margin-top: 10px;
}

@media only screen and (min-width: 768px) {
    body{
        padding: 20px;
    }

    .content{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    h1{
        font-size: 42px;
    }

    h2{
        font-size: 34px;
    }
}

@media only screen and (min-width: 1080px) {
        body{
            padding: 60px 20px;
        }

        img{
            width: 45%;
            height: 100%;
        }

        nav img{
         width: 200px;
         height: 200px;
        }

         h1, h2, h3{
        text-align: center;
        }

        h1{
            font-size: 48px;
            margin-bottom: 20px;
        }

        h2{
            font-size: 40px;
            margin-top: -10px;
            margin-bottom: 10px;
        }

        img{
            display: block;
            margin: 0 auto;
        }

        p{
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
            margin-top:-20px;
            margin-bottom: 15px;
        }

        .content{
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .content img{
            width: 50%;
            height: auto;
        }

        

        section{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 auto;
        }

        footer{
            text-align: left;
            display: block;
        }

        footer p{
            text-align: left !important;
            margin-left: 0;
            width: 100%;
            max-width: none;
            margin-top: 15px;
            padding: 0;
        }

        footer nav{
            text-align: left;
        }
        
      
    
    }

