@import url('https://fonts.googleapis.com/css?family=Michroma&display=swap');

body {
  animation: fadeInAnimation ease 2.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
/*test?*/
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  100% {
    opacity: 10;
  }
}

.split {
  height: 100%;
  width: 33.333%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: hidden;
  padding-top: 20px;
}

.left {
  left: 0;
  background-color: #ffffff;
}

.middle {
  margin-top: -0px; /*not sure why I'm having problems here...*/
  left: 33.33333333%;
  background-color: #ffffff;
}

.right {
  right: 0;
  background-color: #ffffff;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Michroma', sans-serif
}

.mainbutton {
  text-align: center;
  font-size: 75px;
  background: none !important;
  border: none;
  padding: 0 !important;
  font-family: 'Michroma', sans-serif
  color: black;
  text-decoration: none;
  cursor: pointer;
  margin-top: 19%;
  transition: 0.5s;
  cursor:default;
}
.mainbutton:hover {
  text-align: center;
  font-size: 80px;
  background: none !important;
  border: none;
  padding: 0 !important;
  font-family: 'Michroma', sans-serif
  color: white;
  text-decoration: none;
  cursor: pointer;
  margin-top: 19%;
  transition: 0.5s;
  cursor:default;
}
footer {
  position: absolute;
  z-index: 1;
  width: 99%;
  text-align: center;
  bottom: 10px;
}
#button2 {
  font-size: 25px;
  background: none !important;
  border: none;
  padding: 0 !important;
  font-family: 'Michroma', sans-serif
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
#button2:hover {
  font-size: 30px;
  background: none !important;
  border: none;
  padding: 0 !important;
  font-family: 'Michroma', sans-serif
  color: blue;
  text-decoration: underline;
  cursor: pointer;
  transition: 0.2s;
}
p {
  font-size: 17.5px;
  transition: 0.4s;
}
p:hover {
  font-size: 20px;
  color: white;
  transition: 0.4s;
  cursor:pointer;
}

.created-by {
  font-family: 'Michroma', sans-serif;
  background-color: #8325E3;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px #340c5e;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px; /* adjust as needed */
  width: 150px; /* adjust as needed */
  z-index: 999;
}

.bottom-left-button {
  position: fixed;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #042C46;
  box-shadow: 0 0 10px #042C46;
  text-decoration: none;
}

.bottom-left-button img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bottom-left-button:hover {
  background-color: #fff;
  color: #042C46;
  box-shadow: 0 0 10px #fff;
}
