*{
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat');

:root{
    --main-background: white;
    --secondary-background: cornsilk;
    --main-text: black;
    --bars: white;
    --hover-text: #bdbcbc;
    --shadow: 0 1px 5px rgba(104,104,104, 0.8);
    --display-text: white;
}

body{
    font-family: 'Montserrat', sans-serif !important;
}

.main-padding{
    position: relative;
    top: 4rem; 
    margin-bottom: 6rem;
}

.topbar{
    text-align: center;
    padding: 20px;
    background-color: var(--bars);
    position: fixed;
    width: 100%;
    z-index: 99999;
    display: absolute;
    top: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.topbar a{
    text-decoration: none;
    color: var(--main-text);
    font-size: 24px;
    list-style: none;
    position: relative;
}

.topbar a:hover{
    color: var(--main-text);
    transition: .3s;
    text-decoration: none;
}

.topbar a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 50%;
    left: 0;
    background-color: #000;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }

.topbar a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

/* side nav */
#sidebar{
    position: fixed;
    width: 180px;
    height: 100%;
    background: var(--bars);
    left: -180px;
    transition: .5s;
    top: 30px;
    z-index: 999999;
}

#sidebar.active{
    left: 0;
}

#sidebar ul{
    padding-top: 2em;
}

#sidebar ul li{
    font-size: 24px;
    padding: 1vw;
    list-style: none;
}

#sidebar ul li a{
    list-style: none;
    text-decoration: none;
    color: var(--hover-text);
    position: relative;
}

#sidebar ul li a:hover{
    color: var(--main-text);
}

#sidebar ul li a:before {
    content: "";
    position: absolute;
    width: 120%;
    height: 1px;
    top: 50%;
    bottom: 0;
    left: -10%;
    background-color: #000;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }

 #sidebar ul li a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

.toggle-btn{
    position: absolute;
    top: 25%;
    padding-left: 6px;
}

.barone, .bartwo, .barthree{
    width: 35px;
    height: 4px;
    background-color: black;
    margin: 6px 0;
    transition: 0.4s;
}

/* buttons */
.button{
    padding: 1em !important;
    background-color: var(--bars) !important;
    color: grey !important;
    border: none;
    border-radius: 5px;
    text-decoration: none !important;
    list-style: none !important;
}

.button:hover {
    color: grey !important;
    border: 2px solid grey !important;
    text-decoration: none;
    background-color: white !important;
    transition: .2s;
    text-decoration: none !important;
    list-style: none !important;
}

.button a{
    text-decoration: none !important;
    list-style: none !important;
    color: gray !important;
}

.button a:hover{
    text-decoration: none !important;
    list-style: none !important;
    color: var(--hover-text) !important;
}

.barone, .bartwo, .barthree:hover{
    cursor: pointer;
    color: var(--hover-text);
    transition: 0.3s;
}

/* tv static */

/* html, body, #tv {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

#tv {
    height: 100vh;
    opacity: .5;
	position: absolute;
	top: 0;
    left: 0;
    z-index: 2;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
} */

/* banner image */
.heroimage{
    background-image: url(girltruck.jpg);
    background-size: cover;
    height: 100vh;
    text-align: center;
    z-index: 1;
}


.heroitems{
    position: relative;
    width: 100%;
    text-align: center !important;
    display: table;
    z-index: 2;
    top: 50%;
    height: 50vh;
}

.heroitems h1{
    font-size: 6rem;
    color: var(--bars);
    padding: 0;
    margin: 0;
    display: table-cell; 
    vertical-align: middle; 
}

/* News letter starts here */
.newsletter{
    padding: 1em 2em .5em 2em;
    color: var(--white-color);
    background-color: #CFDEF3;
    overflow: hidden;
    z-index: 999999;
    text-align: center;
}

.newsletter h1{
    font-size: 2em;
    color: white;
}

.newsletter form{
    
}

.newsletter input[type="email"]{
    background-color: rgb(239, 237, 237);
    padding: 1em;
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.subscribe{
    padding: 1em;
    background-color: var(--bars);
    color: white;
    border: none;
    border-radius: 5px;
}

/* FOOTER */
footer{
    text-align: center;
    background-color: #CFDEF3;
    top: 0;
    padding: 0em 2em .5em 2em;
}

/* photo-nav */

.photo-nav {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
    margin: 20px;
}

.photo-nav h4{
    color: var(--hover-text);
    margin-top: 30%;
    font-size: 4vw;
    list-style: none;
    position: relative;
}

.photo-nav h4:hover{
    color: var(--main-text);
    transition: .3s;
}

.photo-nav h4:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 50%;
    left: 0;
    background-color: #000;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }

.photo-nav h4:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

.photo-1{
    padding: 15px;
    display: block;
    text-align: center;
    background-color: var(--main-background);
    box-shadow: var(--shadow);
    grid-gap: 20px;
    height: 20vw;
}
.photo-1 a:hover{
    text-decoration: none;
}
.photo-2{
    padding: 15px;
    display: block;
    text-align: center;
    background-color: var(--main-background);
    box-shadow: var(--shadow);
    grid-gap: 20px;
    background-size: cover;
    height: 20vw;
}
.photo-2 a:hover{
    text-decoration: none;
}
.photo-3{
    padding: 15px;
    display: block;
    text-align: center;
    background-color: var(--main-background);
    box-shadow: var(--shadow);
    grid-gap: 20px;
    background-size: cover;
    height: 20vw;
}
.photo-3 a:hover{
    text-decoration: none;
}
.photo-4{
    padding: 15px;
    display: block;
    text-align: center;
    background-color: var(--main-background);
    box-shadow: var(--shadow);
    grid-gap: 20px;
    height: 20vw;
    background-position: center;
}
.photo-4 a:hover{
    text-decoration: none;
}

/* ABOUT PAGE CSS */

.about{
    margin-left: 20vw;
    margin-right: 20vw;
    padding: 2rem;
    border-style: var(--bars);
}

.smiles{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
}

.smile-1{
    display: block;
    box-shadow: var(--shadow);
    grid-gap: 20px;
    background-image: url(ppl6.jpg);
    background-size: cover;
    height: 25vw;
}

.smile-2{
    display: block;
    box-shadow: var(--shadow);
    grid-gap: 20px;
    background-image: url(ppl2.jpg);
    background-size: cover;
    height: 25vw;
}

.smiles p{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0px; 
}

/* SHOP CSS */
.shop-gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
    margin: 3rem 6rem 3rem 6rem;
}

.shop-gallery img{
    box-shadow: var(--shadow);
    height: 25vw;
    width: 100%;
    object-fit: cover;
    margin: 0rem 0rem 1rem 0rem;
}
.shop-gallery img:hover{
    box-shadow: var(--shadow);
    width: 100%;
    transition: 0.4s;
    cursor: pointer;
}
.shop-gallery a{
    color: var(--main-text);
}
.shop-gallery a:hover{
    color: var(--bars);
    text-decoration: none;
    transition: 0.4s;
}
.welcome{
    text-align: center;
    margin-top: 4rem;
}

/* Contact Page */

.contact-image{
    background-image: url(contact.jpg);
    background-size: cover;
    height: 100vh;
    text-align: center;
}

.main-content{
    max-width: 50%;
    padding: 3em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ced4da;
    border-top: none;
    border-bottom: none;
    margin-top: 3em;
    margin-bottom: 3em;
}

.main-content form input{
    width: 100%;
}

.title-message{
    text-align: center;
}

.main-content select{
    background-color: rgb(239, 237, 237);
    width: 100%;
}

.main-content input{
    background-color: rgb(239, 237, 237);
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.main-content textarea{
    background-color: rgb(239, 237, 237);
    border-radius: 5px;
    border: 1px solid #ced4da;
    width: 100%;
}

/* GALLERY CSS */

.gallery-image{
    background-image: url(syndey.jpg);
    background-size: cover;
    height: 100vh;
    text-align: center;
}

/* gallery-nav */

.gallery-nav {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
    margin-left: 25px;
}

.gallery-nav h4{
    color: var(--hover-text);
    margin-top: 35%;
    font-size: 4vw;
    text-align: center;
    list-style: none;
    position: relative;
    text-decoration: none;
}

.gallery-nav h4:hover{
    color: var(--main-text);
    transition: .3s;
}

.gallery-nav h4:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    bottom: 0;
    left: 0;
    background-color: #000;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }

.gallery-nav h4:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

.gallery-1{
    text-align: center;
    background-color: var(--main-background);
    box-shadow: var(--shadow);
    height: 20vw;
    width: 20vw;
}
.gallery-1 a:hover{
    text-decoration: none;
}
.gallery-2{
    text-align: center;
    background-color: var(--main-background);
    box-shadow: var(--shadow);
    height: 20vw;
    width: 20vw;
}
.gallery-2 a:hover{
    text-decoration: none;
}
.gallery-3{
    text-align: center;
    background-color: var(--main-background);
    box-shadow: var(--shadow);
    height: 20vw;
    width: 20vw;
}
.gallery-3 a:hover{
    text-decoration: none;
}
.gallery-4{
    text-align: center;
    background-color: var(--main-background);
    box-shadow: var(--shadow);
    height: 20vw;
    width: 20vw;
}
.gallery-4 a:hover{
    text-decoration: none;
}

/* container gallery */

.container-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-columns: repeat(auto-fill, minmax(250, 1fr));
    justify-items: center;
    grid-gap: 20px;
    margin: 3em 2em 0.2em 2em;
}

.item>a>img{
    width: 100%;
    height: 100%;
}

.item img:hover{
    filter: blur(3px) brightness(95%);
    box-shadow: 0 1px 3px rgba(0,0,0,0,.22);
    cursor: pointer;
}

#toggle{
    display: none;
}

.label{
    font-size: 26px;
    line-height: 70px;
    display: none;
    width: 30px;
    float: right;
    color: var(--white-color);
}

/* EVENTS PAGE */

.events-image{
    background-image: url(shop.jpg);
    background-size: cover;
    height: 100vh;
    text-align: center;
}

iframe{
    width: 100%;
    padding-top: 5%;
    height: 100%;
}

/* MERCHANDISE CSS */

.featured-item{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 3rem 3rem 3rem 3rem;
}

.featured-item img{
    box-shadow: var(--shadow);
    width: 100%;
    /* min-width: 20vw; */
    object-fit: cover;
}

/* EVENTS CSS */

/* main style begins here */

.main-container{
    display: grid;
    grid-gap: 20px;
    margin: 20px 0px 20px 20px;
    grid-template-areas:
    "image image top"
    "image image bottom"
}

.float-left{
    padding: 1rem;
    background-position: center;
    min-height: 500px;
    grid-area: image;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-items: center;
    color: var(--light);
}

.float-left h3{
    color: var(--main-text);
}
.float-left p{
    color: var(--main-text);
}

.right-events{
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-right: 20px;
}

.top{
    grid-area: top;
}

.bottom{
    grid-area: bottom;
    display: block;
    text-align: center;
    background-color: var(--main-background);
    box-shadow: var(--shadow);
    grid-gap: 20px;
    height: 35vw;
    margin-right: 20px;
    padding-top: 30%;
}

.event-nav a{
    color: var(--hover-text);
    font-size: 4vw;
    list-style: none;
    text-decoration: none;
    position: relative;
}

.event-nav a:hover{
    color: var(--main-text);
    transition: .3s;
    list-style: none;
    text-decoration: none;
    position: relative;
}

.event-nav a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 50%;
    left: 0;
    background-color: #000;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }

.event-nav a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }










/* MEDIA QUERY TABLET */
@media(max-width: 760px){

    .heroitems{
        height: 0vh;
    }
    .main-padding{
        position: relative;
        top: 4rem; 
        margin-bottom: 6rem;
    }
    
    .topbar{
        text-align: center;
        padding: 20px;
        background-color: var(--bars);
        position: fixed;
        width: 100%;
        z-index: 99999;
        display: absolute;
        top: 0 !important;
        font-family: 'Nunito', sans-serif !important;
    }
    
    .topbar a{
        text-decoration: none;
        color: var(--main-text);
        font-size: 0px;
        list-style: none;
    }
    
    .topbar a:hover{
        color: var(--hover-text);
        transition: .3s;
        text-decoration: none;
    }

    canvas{
        height: 0vh;
    }


    /* INDEX PHOTO NAV */


    .photo-nav {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;
    }

    .photo-nav h4{
        color: var(--hover-text);
        margin: 35% 0% 35% 0%;
        font-size: 3rem;
        list-style: none;
    }

    .photo-nav h4:hover{
        color: var(--bars);
        transition: .3s;
    }

    .photo-1{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        grid-gap: 20px;
        height: auto;
        width: auto;
    }
    .photo-1 a:hover{
        text-decoration: none;
    }
    .photo-2{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        grid-gap: 20px;
        height: auto;
        width: auto;
    }
    .photo-2 a:hover{
        text-decoration: none;
    }
    .photo-3{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        grid-gap: 20px;
        height: auto;
        width: auto;
    }
    .photo-3 a:hover{
        text-decoration: none;
    }
    .photo-4{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        grid-gap: 20px;
        height: auto;
        width: auto;
    }
    .photo-4 a:hover{
        text-decoration: none;
    }
    
    /* banner image */
    .heroimage{
        height: 0vh;
    }

    .heroitems h1{
        font-size: 0em;
    }

    /* SHOP */

    .shop-gallery{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
        margin: 3rem 4rem 3rem 4rem;
    }
    .shop-gallery img{
        box-shadow: var(--shadow);
        height: auto;
        width: %100;
        object-fit: cover;
        margin: 0rem 0rem 1rem 0rem;
    }

    /* GALLERY HOME*/
    .gallery-image{
        height: 0vh;
    }

    .gallery-nav {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        margin: 20px;
    }

    .gallery-nav h4{
        color: var(--hover-text);
        margin-top: 30%;
        font-size: 7vw;
        text-align: center;
        list-style: none;
    }

    .gallery-1{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        height: 40vw;
        width: 100%;
    }

    .gallery-2{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        height: 40vw;
        width: 100%;
    }
    .gallery-2 a:hover{
        text-decoration: none;
    }
    .gallery-3{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        height: 40vw;
        width: 100%;
    }
    .gallery-4{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        height: 40vw;
        width: 100%;
    }

    /* GALLERY CONTAINERS */
    .container-gallery{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-columns: repeat(auto-fill, minmax(250, 1fr));
        justify-items: center;
        grid-gap: 20px;
        margin: 3em 2em 0.2em 2em;
    }
    
    .item>a>img{
        width: 100%;
        height: 100%;
    }

    /* EVENTS */

    .event-nav a{
        color: var(--hover-text);
        font-size: 6vw;
        list-style: none;
        text-decoration: none;
        position: relative;
    }

    .events-image{
        height: 0vh;
    }
    iframe{
        width: 100%;
        height: 70vh;
    }
    .float-left{
        margin-right: 20px;
    }

    .bottom{
        height: 80vw;
    }

    .bottom h4{
        font-size: 8vw;
    }

    .main-container{
        display: grid;
        grid-gap: 20px;
        margin: 20px 20px 20px 20px;
        grid-template-areas:
        "top top top"
        "image image image"
        "bottom bottom bottom"
    }

    /* ABOUT */
    .about{
        margin-left: 10vw;
        margin-right: 10vw;
        padding: 2rem;
        border-style: var(--bars);
    }

    /* CONTACT */
    .contact-image{
        height: 0vh;
    }

    .main-content{
        max-width: 100%;
        padding: 3em;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border: none;
        margin-top: 3em;
        margin-bottom: 3em;
    }
    
    .main-content form input{
        width: 100%;
    }

    /* Merchandise */

    .merchandise img{
        height: 60vw;
        width: 100%;

    }

    }
    













/* MEDIA QUERY PHONE */
@media(max-width: 480px){

    #sidebar{
        position: fixed;
        width: 180px;
        height: 100%;
        background: var(--bars);
        left: -180px;
        transition: .8s;
        top: 30px;
        z-index: 999999;
    }

    #sidebar ul li{
        font-size: 24px;
        padding: .75vw;
        list-style: none;
    }

    .heroitems{
        height: 0vh;
    }
   
    /* INDEX PHOTO NAV */
    .photo-nav {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 20px;
        margin: 20px;
    }
    .photo-nav h4{
        color: var(--hover-text);
        margin: 35% 0% 35% 0%;
        font-size: 3rem;
        list-style: none;
    }

    .photo-nav h4:hover{
        color: var(--main-text);
        transition: .3s;
    }

    .photo-1{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        grid-gap: 20px;
        height: auto;
    }
    .photo-1 a:hover{
        text-decoration: none;
    }
    .photo-2{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        grid-gap: 20px;
        height: auto;
    }
    .photo-2 a:hover{
        text-decoration: none;
    }

    .photo-3{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        grid-gap: 20px;
        height: auto;
    }
    .photo-3 a:hover{
        text-decoration: none;
    }
    .photo-4{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        grid-gap: 20px;
        height: auto;
        background-position: center;
    }
    .photo-4 a:hover{
        text-decoration: none;
    }

    /* NEWSLETTER */
    
    .newsletter input[type="email"]{
        background-color: rgb(239, 237, 237);
        padding: 1em;
        border-radius: 5px;
        border: 1px solid #ced4da;
        width: 100%;
    }
    
    .subscribe{
        padding: 1em;
        background-color: var(--bars);
        color: white;
        border: none;
        border-radius: 5px;
        margin-top: 20px;
        width: 100%;
    }

    /* SHOP */

    .shop-gallery{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        margin: 3rem 6rem 3rem 6rem;
    }
    .shop-gallery img{
        box-shadow: var(--shadow);
        height: auto;
        width: 100%;
        object-fit: cover;
        margin: 0rem 0rem 1rem 0rem;
    }

    /* GALLERY */

    .gallery-nav {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        margin: 20px;
    }
    .gallery-nav h4{
        color: var(--hover-text);
        margin-top: 30%;
        font-size: 14vw;
        text-align: center;
        list-style: none;
    }
    
    .gallery-1{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        height: 80vw;
        width: 100%;
    }

    .gallery-2{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        height: 80vw;
        width: 100%;
    }
    .gallery-2 a:hover{
        text-decoration: none;
    }
    .gallery-3{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        height: 80vw;
        width: 100%;
    }
    .gallery-4{
        padding: 15px;
        display: block;
        text-align: center;
        background-color: var(--main-background);
        box-shadow: var(--shadow);
        height: 80vw;
        width: 100%;
    }

    /* GALLERY CONTAINERS */
    .container-gallery{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-columns: repeat(auto-fill, minmax(250, 1fr));
        justify-items: center;
        grid-gap: 20px;
        margin: 3em 2em 0.2em 2em;
    }
    
    .item>a>img{
        width: 100%;
        height: 100%;
    }

    /* Events */

    .main-container{
        display: grid;
        grid-gap: 20px;
        margin: 20px 0px 20px 20px;
        grid-template-areas:
        "top top top"
        "image image image"
        "bottom bottom bottom"
    }

    .event-nav a{
        color: var(--hover-text);
        font-size: 8vw;
        list-style: none;
        text-decoration: none;
        position: relative;
    }
    /* ABOUT */
    .about{
        margin-left: 5vw;
        margin-right: 5vw;
        padding: 2rem;
        border-style: var(--bars);
    }
    .smiles{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 20px;
    }
    .smile-1, .smile-2{
        height: 60vw;
    }

    /* MERCHANDISE */

    .merchandise img{
        height: 60vw;

    }
    
    

}













    