/* Font face */

@font-face {
  font-family: 'tiny';
  src: url("../dinamo/TINY5x3GX.ttf") format("truetype");
}





/* Font classes and hover states */

/*
}
.tiny:hover {
  font-variation-settings: "wght" 200;
} */

/* .animate_font{
  transition: font-variation-settings 1s linear;
} */

/* Reset CSS */

html, body {
  height: 100vh;
  width: 100vw;
  background-color: #a9ab8f;
  overflow: scroll;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, button, input, label {
  cursor: pointer
}

*, *:after, *:before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0
}

/* Your CSS */

p {
  font-family: 'tiny';
  font-variation-settings: "wght" 260;
}

.screen_2 {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 22vw;
  line-height: 14.0vw;
  color: yellow;
}

.screen_3 {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 22vw;
  line-height: 14.0vw;
  color: #734DFF;
}

.screen_1 {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 80vw;
  color: #53E827;
}

.screen_1 p{
  margin-top: -5.5vw;
}

.screen_1, .screen_2, .screen_3{
  display: none
}

.screen_1.show, .screen_2.show, .screen_3.show{
  display: flex
}

#volume{
  display: none;
}

#message{
  position: fixed;
  top:0;
  left:0;
  width: 100vw;
  height: 100vh;
  z-index: 100000000;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor: pointer;
  font-size: 3vw;
  font-variation-settings: "wght" 160;
}
/* Media Queries */

@media screen and (max-width:700px){
  h1{
    color: blue;
  }
}
