* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #242223;
}   

header {
    padding-top: 6%;
    background-color: #000000;
        display: grid;
    margin: auto;
    text-align: center;
    grid-template-columns: 1fr;

}

/*FONTS*/

h1 {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #CEF20E;
    font-size: 5rem;

    display: grid;
    margin: auto;
    text-align: center;
    grid-template-columns: 1fr;

}

h2 {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #CEF20E;
    font-size: 3rem;

    display: grid;
    margin: auto;
    text-align: center;
    grid-template-columns: 1fr;

}


h3 {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #CEF20E;
    font-size: 2rem;
    
    text-align: center;
}

p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: antiquewhite;
    margin-right: 5rem;
    margin-left: 5rem;
    text-align: left;
    font-size: 1rem;
}

ul li {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: antiquewhite;
    text-align: center;
}


/*NAV*/
nav ul {
    list-style-type: none;
    margin: 0;
    margin-bottom: 10px;
    padding: 10px;
    overflow: hidden;
    background-color:#000000;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;

    left: 0;
    right: 0;
    z-index: 1000;
  }

  nav li a {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 400;
    font-size: x-large;
    font-style: normal;
    color: #CEF20E;

    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px rgb(0, 0, 0);
    text-align: center;

    transition-duration: 0.2s;
  }
  
  
  nav a:hover {
    text-decoration-line: underline;
    font-size: xx-large;
}

img{
    width: 100%;
}

/*LINKS*/
#links {

}

/*ABOUT*/
#outer_box, #inner_box {
    padding: 7%;
}

.box {
    width: 70%;
    padding-top: 10vh;

    position: relative;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
/*COLORS*/
#colors {
    padding-top: 20vh;
}

/*PRODUCT*/
#product {
    padding-top: 10%;
    padding-bottom: 10%;
}


      /* Mobile */
     


      /* Desktop */
      @media screen and (min-width: 620px) {

        .box{
       padding-bottom: 5vh;
        }

        h1 {
            font-size: 10rem;
        }

        h2 {
            font-size: 5rem;
        }
        h3 {
            font-size: 4rem;

        }
        p {
            font-size: 1.5rem;

        }
        ul li {
            font-size: 1.5rem;
        }
}


@media screen and (min-width: 820px) {

    .box{
   padding-bottom: 10vh;
    }

}


@media screen and (min-width: 1050px) {

    #colors{
   padding-top: 60vh;
    }

    .box {
        width: 50%;
    }

}




