#main-picture {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

#main-picture > img {
  width: 50%;
}

#main-message {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: solid 3px red;
  border-top: solid 3px red;
  padding: 1rem;
  width: fit-content;
  margin: auto;
}

.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.5s 10s;
  -moz-animation: blink 0.5s 10s;
  animation: blink 0.5s 10s;
}

@keyframes rotateAnimation {
  0% {
    transform: rotateY(-75deg);
  }
  100% {
    transform: rotateY(0);
  }
}

#main-picture {
  animation: rotateAnimation 2s ease-in-out;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 1055px) {
  #main-picture > img {
    width: 40%;
  }
}

@media only screen and (max-width: 908px) {
  #main-picture > img {
    width: 50%;
  }
}

@media only screen and (max-width: 708px) {
  #main-picture > img {
    width: 60%;
  }
}

@media only screen and (max-width: 570px) {
  #main-picture > img {
    width: 70%;
  }
}

@media only screen and (max-width: 470px) {
  #main-picture > img {
    width: 90%;
  }
}
