<style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      height: 100%;
      font-family: 'Outfit', sans-serif;
      background-color: #000;
      color: white;
      overflow: hidden;
    }

    body {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      position: relative;
    }








@keyframes rotate {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

    .logo {
      width: 240px;
      height: 240px;
      border-radius: 50%;
      /* border: 2px solid white; */
      margin-bottom: 10px;
  animation: fadeIn 0.7s ease-in forwards, spin 20s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(-5deg);}
      100% { transform: rotate(360deg);}
    }

    .name {
      font-size: 2.4rem;
      margin-bottom: 40px;
    }

    .btn {
      border: 2px solid white;
      color: white;
      padding: 12px 24px;
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
        font-size: .90rem; /* Increase this value for larger text */
  font-weight: 400;
  text-decoration: none;

    }

    .btn:hover {
      background: white;
      color: black;
    }

.social-icons {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.icon-img {
  width: 30px;
  height: 30px;
  padding: 6px;
  /* border: 2px solid white; */
  border-radius: 50%;
  background-color: transparent;
  transition: background 0.3s ease, transform 0.3s ease;
}

.icon-img:hover {
  background-color: #000;
  transform: scale(1.1);
}







  </style>