* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, #2c2c2c, #2c2c2c, #000000, #000000);
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
  font-family: 'Share Tech Mono', monospace;
  color: #f2f2f2;
  text-align: center;
  position: relative;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.footer-logo {
  position: absolute;
  bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.linkedin-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.linkedin-circle img {
  width: 20px;
  height: 20px;
}

.linkedin-circle:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.youtube-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.youtube-circle img {
  width: 20px;
  height: 20px;
}

.youtube-circle:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.instagram-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.instagram-circle img {
  width: 20px;
  height: 20px;
}

.instagram-circle:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

a {
  text-decoration: none;
}
