body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #000;
    overflow: hidden;
    position: relative;
  }
  
  h2 {
    font-size: 4em;
    text-align: center;
    z-index: 1;
  }
  
  p {
    font-size: 1.5em;
    text-align: justify;
    padding: 50px;
    z-index: 1;
  }
  
  .icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
  }
  
  .btn {
    font-size: 2rem;
    color: #DB040B; 
    text-decoration: none;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
  }
  
  .btn:nth-child(1) {
    top: 10%;
    left: 20%;
  }
  
  .btn:nth-child(2) {
    top: 30%;
    left: 60%;
  }
  
  .btn:nth-child(3) {
    top: 70%;
    left: 80%;
  }
  
  .btn:nth-child(4) {
    top: 50%;
    left: 10%;
  }
  
  .btn:nth-child(5) {
    top: 20%;
    left: 80%;
  }
  
  .btn:nth-child(6) {
    top: 60%;
    left: 40%;
  }
  
  .cursor {
    height: 200px;
    width: 200px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
  }
  