/* Hi! Welcome to my code. 
Please feel free to give me any feedback on this code (@probablyliquid) on GitHub.
Have a wonderful day :)
*/

* {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  background-color: #03001c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
}
h1 {
  color: #e96b80;
  font-size: 40px;
}
h2 {
  color: #88b9e3;
  font-size: 25px;
}
#nametag {
  color: #26ce77;
  font-size: 25px;
}
.footer {
  background-color: #0cce6b;
  width: 100vw;
  height: 40px;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  bottom: 0;
}
#meanwhile {
  color: rgb(238, 168, 238);
  font-weight: bold;
  font-size: 25px;
}

#projects {
  display: inline-block;
  position: relative;
  color: rgb(165, 79, 165);
  text-decoration: none;
}
#projects:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  bottom: -5px;
  position: absolute;
  background: plum;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
#projects:hover:after {
  width: 100%;
  left: 0;
  color: rgb(165, 79, 165);
}
.text {
  background-color: #03001c;
  position: absolute;
  top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#testing-zone {
  padding: 3px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
}

#waving-hand {
  width: 60px;
  position: relative;
  top: 10px;
  left: 10px;
  user-select: none;
}
#eyes {
  width: 30px;
}
#liquid {
  color: #094a42;
  letter-spacing: 0.03rem;
  font-family: "Clash Display", sans-serif;
  font-weight: bolder;
  font-size: 20px;
  position: absolute;
  top: 50;
  left: 50;
}
#secret {
  background: none;
  position: absolute;
  top: 50;
  right: 0.5%;
}
#secret:hover {
  background-color: #136f63;
  border-radius: 50%;
}
#construction-img {
  width: 40px;
  position: relative;
  top: 10px;
}

#othertext {
  line-height: 50px;
  position: relative;
  top: 20px;
  left: 0px;
}

/* Media Query for Mobile-Responsive Design (Note: this website was not developed as mobile-first) */
@media only screen and (min-device-width: 320px) and (max-device-width: 786px) {
  .text {
    margin-left: 20px;
    margin-right: 20px;
  }
}
