/* FONTS */

@font-face {
  src: url(../fonts/Gantari-SemiBold.ttf) format("truetype");
  font-family: "Gantari SemiBold";
  font-display: block;
}

@font-face {
    src: url(../fonts/Gantari-Light.ttf) format("truetype");
    font-family: "Gantari Light";
    font-display: block;
  }

  @font-face {
    src: url(../fonts/Gantari-Regular.ttf) format("truetype");
    font-family: "Gantari Regular";
    font-display: block;
  }

/* Universal selector, body tag */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gantari SemiBold", sans-serif;
    font-weight: normal;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  *::before {
    box-sizing: border-box;
  }

  body {
      background-color: #301f30;
  }

  img {
    display: block;
  }

  /* Navigation Bar */

  #logoBar {
      padding-top: 65px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
  }

  img#logo {
      padding: 15px;
      width: 180px;
      height: 180px;
  }

/* Website in the Works Message (Delete Later) */

  #main_container {
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  h1 {
      font-size: 60px;
      text-align: center;
      color: white;
      letter-spacing: -3px;    
  }

  h2, h2 span {
      padding-top: 2px;
      font-family: "Gantari Regular", sans-serif;
      font-size: 25px;
      font-weight: normal;
      text-align: center;
      color: white;
      letter-spacing: -1.5px; 
  }

  span.text_highlight_one {
      color: orange;
  }

  span.text_highlight_two {
      color: red;
  }

  span.text_highlight_three {
    color: pink;
  }

  /* DELETE ONE OF THE FOLLOWING LOGO FLEX CONTAINERS ONCE YOU LAUNCH THE SITE */

  #logo_flex_container {
      padding-top: 30px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      padding-bottom: 50px; 
  }

/* DELETE THE SOCIALS RULE & THE A TAG BELOW (WITHOUT ID LOGO FLEX BEFORE IT) */

  .socials {
      width: 100px;
      height: 100px;
      border-style: solid;
      border-color: pink;
      border-radius: 8px;
  }

  /* Reduce or increase the margin in the next rule depending on the number of social handles*/

  a {
    display: block;
    /* margin:80px; */
    margin:40px; 
    margin-top: 0px;
    margin-bottom: 0px;
  }

  a:hover {
    border-color: orange;
  }

  a:hover .socials {
    border-color: orange;
    transform: scale(1.1);
  }

/****** MEDIA QUERIES ******/

@media screen and (max-width: 880px) {

    img#logo {
        width: 160px;
        height: 160px;
        margin: 40px 0;
        margin-bottom: 0;
    }
    
    h1 {
        font-size: 55px;
    }

    h2, h2 span {
        font-size: 23px;
    }

    .socials {
        width: 80px;
        height: 80px;
    }

}

@media screen and (max-width: 720px) {

    img#logo {
      width: 200px;
      height: 200px;
      margin-bottom: 40px;
    }

    h1 {
        font-size: 60px;
        margin-bottom: 20px;
        padding: 0 40px;
        line-height: 50px;
    }

    h2, h2 span {
      font-size: 24px;
    }

    #logo_flex_container {
      flex-direction: column;
      padding-bottom: 100px;
      /* margin-bottom: 30px; */
    }

    .socials {
      margin: 30px 0;
      width: 120px;
      height: 120px;
    }

}

@media screen and (max-width: 615px) {

    h2 {
      padding: 0 40px;
    }

}

