
/* roboto-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url('/fonts/roboto-v30-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/roboto-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/roboto-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@keyframes logo {
  0%   {width:10%;height:auto;}
  50%   {width:15%;height:auto;}
  100% {width:10%;height:auto;}
}



::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-button {
  display: none;
}

body {
  padding: 0px;
  margin: 0px;
  width: 100vw;
  height: 100vh;
  font-family: 'Roboto';
  font-weight: 700;
  font-size: 2rem;
  background-color: #33ffcc;
  -ms-overflow-style:none;
}

h1 {
  font-weight: 100;
  text-align: center;
  margin-bottom: 100px;
  top: 10%;
  font-size: 3.5rem;
}

.logowrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}

#logo {
  justify-content: center;
  animation-name: logo;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}


@media screen and (max-width: 1000px) {
  @keyframes logo {
    0%   {width:40%;height:auto;}
    50%   {width:50%;height:auto;}
    100% {width:40%;height:auto;}
  }
  h1 {
    font-size: 7rem;
  }
}
