/* 
COLORS FROM STYLE TILE

#85CFC3 = TEALISH
#F2CFC4 = PINKISH 

*/
@import url("https://fonts.googleapis.com/css?family=Staatliches&display=swap");
@import url("https://use.typekit.net/zoj0fcc.css");

@font-face {
  font-family: main-font;
  src: url("https://use.typekit.net/zoj0fcc.css");
}
@font-face {
  font-family: secondary-font;
  src: url("https://use.typekit.net/zoj0fcc.css");
}

* {
  margin: 0;
  padding: 0;
  font-family: balboa-plus-fill, sans-serif;
}

body {
  background-color: #f2cfc4;
  overflow-x: hidden;
}

/* MAIN SPLASH */
main {
  height: 100vh;
  width: 100vw;
  padding-top: 23vh;
  background-image: url("../img/mavro_int.jpg");
  background-size: cover;
}

h1 {
  display: block;
  text-align: center;
  font-family: balboa-plus-primary, sans-serif;
  color: white;
  font-weight: 400;
  font-size: 30vh;

  animation-name: in;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

h3 {
  display: block;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  text-align: center;
  color: black;
  background-color: white;
  border: 3px solid black;
  width: 70vw;
  margin: 0 auto;
  margin-top: 5vh;
  padding: 20px;
  font-size: 2.5em;
}

#hours {
  width: 40vw;
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 8rem;
  }

  main {
    padding-top: 2vh !important;
  }

  #hours {
    width: 70vw;
  }
}

@media screen and (min-width: 480px) and (max-width: 1024px) {
  h1 {
    font-size: 5rem;
  }
}

/* ANIMATIONS */
@-webkit-keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 479px) {
  body {
    overflow-x: hidden;
  }

  main {
    padding-top: 10vh;
  }

  .newsletter {
    display: none;
  }
}

@media screen and (min-width: 480px) and (max-width: 1024px) {
  main {
    padding-top: 23vw;
    height: 160vh;
  }

  body {
    overflow-x: hidden;
  }

  h2 {
    font-size: 5vh;
  }

  .newsletter {
    /* display: none; */
  }
}
