@charset "UTF-8";
body {
  font-family: "Roboto", sans-serif;
}
html {
  font-size: 12px;
}
.entrance {
  position: relative;
}
.entrance img {
  width: 30%;
}
.fade-in {
  position: absolute;
  animation: fadeIn 1s ease 0s 1 normal;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.blink-simple {
  position: absolute;
  animation: fadeIn 1s ease 0s 1 normal,
             blink-simple 1.2s step-start infinite;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink-simple {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}