body, html {
    margin: 0;
    padding: 0;
    background-color: #2232c7;
}


* {
    cursor: none;
  }

  
@font-face { 
    font-family: 'Myfont';
    src: url('Myfont1-Regular.ttf') format("truetype");

  
   } 
      
  
  body {
    overflow: hidden;
    font-style: monospace;
    font-family: 'Myfont';
    font-size: 21px;
  }

  a {
    text-decoration: none;
    color:#f0e5e5; 
    font-size: 25px;
  }
  

.container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: row;
    height: 100%;
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Enable snapping to each section */
}

.section {
    width: 100vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 20px;
    box-sizing: border-box;
    background-color: #2232c7;
}

.home {
    position: absolute;
    top: 50%;
    left: 10%;
    color: #f0e5e5;
    font-size: 24px;
}

h1 {
    position: relative;
    top: 50%;
    left: 7%;
    color: #f0e5e5;
  }
  
p {
    position: relative;
    left: 30%;
    justify-content: center;
    right: 10%;
    color: #f0e5e5;
    z-index: 3;
  
  }

  pre {
    overflow: hidden;
    font-style: monospace;
    font-family: 'Myfont';
    font-size: 21px;

    color: #f0e5e5;


  }


text {
    position: absolute;
    left: 20%;
    text-align: left;
    align-items: center;
    justify-content: center;
    right: 20%;
    top: 40%;
    color: #f0e5e5;

}





.container a {
    position: relative;
    border-bottom: 2px dashed var(--red);
    transition: all 0.2s;
  }

  
.circle-container {
    display: flex;
    justify-content: space-between;
    width: 60%;
    z-index: 0;
    
  }
  
  .circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    
  }
  
  .circle a {
    color: #000000;
    font-size: 20px;

    text-decoration: none;
    
  }
  
 
.circle:hover {
    transform: scale(1.2);
    background-color: #e79393;
    z-index: 2;
    filter: blur(5px);
  }
  
  .circle:hover .circle a {
    opacity: 0; /* Hide default text on hover */
  }
  
.circle1 {
  position: absolute;
  top: 10%;
  width: 100px;
  
}

.circle2 { 
    position: relative;
    top: 80%;
    left: 50%;
    background-color: #c996d3; 
  }

  .circle3 { 
    position: relative;
    top: 50%;
    left: 0%;
    background-color: #c996d3; 
  }

  .circle4 { 
    position: relative;
    top: 40%;
    left: 60%;
    background-color: #c996d3; 
  }


  .circle5 { 
    position: relative;
    top: 40%;
    left: 50%;
    background-color: #c996d3; 
  }

  .circle6 { 
    position: absolute;
    bottom: 20%;
    left: 70%;
    background-color: #c996d3; 
  }

  .circle7 { 
    position: relative;
    top: 10%;
    left: 30%;
    background-color: #c996d3; 
  }

  .circle8 { 
    position: relative;
    top: 30%;
    left: 50%;
    background-color: #c996d3; 
  }

  .circle9 { 
    position: absolute;
    top: 0%;
    left: 10%;
    background-color: #c996d3; 
  }
  

  .video1 {
    position: absolute;
    top: 50%;
    left: 50%;
  }

.cursor {
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .cursor::after,
  .cursor::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f5eef3;
    height: 10px;
    width: 10px;
    border-radius: 50px;
  }
  .cursor::before {
    background-color: #f5eef3;
  }
  .cursor.click::before {
    animation: click 1s ease forwards;
    background-color: #f5eef3;
  }
  @keyframes click {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(7);
    }
  }
  