* {
  margin: 0;
  padding: 0;
}
body {
  color: white;
  background-color: #093b3a;
  height: 100vh;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: white;
}
a.aLink:hover {
  text-decoration: underline;
}
#main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Dosis', sans-serif;
  font-size: 12px;
}
img {
  width: 25rem;
  height: 25rem;
}
.wrap {
  position: relative;
  width: 25rem;
}
#contents {
  text-align: center;
  color: white;
  padding-bottom: 35px;
  font-size: 22px;
  line-height: 30px;
  font-weight: normal;
  margin-top: 50px;
}
#contents h2 {
  font-size: 4rem;
  line-height: 4rem;
  font-weight: bold;
}
#contents .loader {
  margin-top: 10px;
  padding: 20px 5px;
}
#contents .loader .load {
  background-color: #313031;
  border-radius: 10px;
}
#contents .loader .load .percentage {
  background: linear-gradient(
    90deg,
    rgba(235, 182, 81, 1) 0%,
    rgba(194, 144, 24, 1) 35%,
    rgba(215, 135, 11, 1) 88%
  );
  height: 10px;
  border-radius: 10px;
}
#contents .loader .info {
  display: flex;
  font-size: 18px;
}
#contents .loader .info span {
  flex: 1;
}
#contents .loader .info span:first-child {
  text-align: left;
}
#contents .loader .info span:last-child {
  text-align: right;
}
#footer {
  text-align: center;
  margin-top: 50px;
}
#footer .social-links {
  display: flex;
  justify-content: center;
}
#footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  font-size: 20px;
  border-radius: 40px;
}
#footer .social-links a:hover,
#footer .social-links a:active {
  border: 2px solid #093b3a;
  background: linear-gradient(
    90deg,
    rgba(235, 182, 81, 1) 0%,
    rgba(194, 144, 24, 1) 35%,
    rgba(215, 135, 11, 1) 88%
  );
  color: black;
}
@media (max-width: 600px) {
  img {
    width: 20rem;
    height: 20rem;
    margin-top: -25px;
  }
  #footer .social-links a {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 40px;
  }
  #footer {
    margin-top: 0;
    margin-bottom: 25px;
  }
  #contents {
    font-size: 18px;
    line-height: 24px;
    margin-top: 0;
    padding-bottom: 10px;
  }
  #contents h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .wrap {
    width: 20rem;
  }
  #main {
    height: 100vh;
  }
}
