* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  background: #5c4033;
  animation: changeBg 8s infinite alternate;
  transition: background 1s ease-in-out;
  overflow: hidden;
  position: relative;
}
@keyframes changeBg {
  0% {
    background: #5c4033;
  }
  25% {
    background: #c08a4a;
  }
  50% {
    background: #d5b895;
  }
  75% {
    background: #2c3e50;
  }
  100% {
    background: #4a4a4a;
  }
}

.container {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 30px 0px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: black;
}

.logo {
  margin-bottom: 10px;
  overflow: hidden;
  border: solid 2px #fff;
  border-radius: 50%;
  background-color: black;
  padding: 5px;
}

.logo img {
  width: 150px;
}
.title {
  padding: 10px;
  text-align: center;
}
.title h1 {
  margin-bottom: 20px;
}
.title p {
  font-size: 18px;
}
.social-icons {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.social-icons a {
  font-size: 24px;
  text-align: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.5s ease forwards;
  transition: background 0.5s ease;
  margin: 10px;
}
.social-icons a img {
  width: 50px;
  height: 50px;
}
.social-icons a:nth-child(1) {
  animation-delay: 0.3s;
}
.social-icons a:nth-child(2) {
  animation-delay: 0.6s;
}
.social-icons a:nth-child(3) {
  animation-delay: 0.9s;
}
.social-icons a:nth-child(4) {
  animation-delay: 1.2s;
}
.social-icons a:nth-child(5) {
  animation-delay: 1.5s;
}
.social-icons a:nth-child(6) {
  animation-delay: 1.8s;
}
.social-icons a:nth-child(7) {
  animation-delay: 2.1s;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
