html {
  background-color: rgb(0, 140, 255);
}

body {
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 98.3vh;
  opacity: 0;
  animation: fade-in 2s ease-out forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


h1 {
  font-size: 36px;
  text-align: center;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  grid-gap: 10px;
  margin-bottom: 20px;
}

.social-links img {
  width: 100%;
  height: auto;
}

.title-container {
  position: fixed;
  top: 0;
  left: -15px;
  width: 100%;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.social-links {
  margin-top: 100px;
}

footer {
  bottom: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  padding: 20px;
  width: 100%;
  position: fixed;
  margin-top: auto;
}

.button {
  display: inline-flex;
  background-color: rgb(255, 0, 0);
  color: rgb(255, 255, 255);
  padding: 2vh 10vh;
  margin-right: 85px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  text-align: center;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  outline: solid white 2px;
}

.button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(0, 140, 255);
}

.button1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, 2%);
  display: inline-flex;
  background-color: #5865F2;
  border: solid;
  color: rgb(255, 255, 255);
  padding: 2vh 50px;
  margin-right: 25px;
  margin: 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  text-align: center;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  outline: solid white 2px;
}

.button1:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(0, 140, 255);
}