/* Center the loader */
#loader {
  position: absolute;
  top: 30%;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-left: auto;
margin-right: auto;
  border: 16px solid #fef6f8;
  border-radius: 50%;
  border-top: 16px solid #cc3366;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
  text-align: center;
}

#myDiv img {
width: 30vw;
}

    body {
      background: #fef6f8;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      font-family: "Pica";
      color: #cc3366;
    }

    #typewriter {
position: absolute;
text-align: center;
      font-size: 1.5rem;
      white-space: nowrap;
      overflow: hidden;
      width: 24ch;
    }

a:link, a:visited {
  background-color: #cc3366;
border: 1px solid white;
  color: #fef6f8;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: white;
border: 1px solid #cc3366;
color: #cc3366;
}

footer {
color: black;
}