@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

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


html{
    font-size: 62.5%;
}
body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    color: #f9f9f9;
    background-color: #121214;
}



.textqq {
    font-size: 3.5rem;
    font-family: arial;
    font-weight: 800;
    color: #f9f9f9;
    margin-bottom: 30px; 
    width: auto;
    height: auto;
    text-align: center;
    
}






.youtube {
    margin-top: 50px;
    width: 40vw;
    height: 20vw;
    border-radius: 15px;
}




header{
    margin-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

















section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}




.home2,
.home3,
.home4,
.home5,
.home6 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background: #121214;
    border-bottom: 2px solid #24242419;
    
}




.home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    position: relative; 
    width: 100vw;
    height: 100vh;
    border-bottom: 1px solid #103d97;
}

.background {
  margin: 0;
  background: url("./assets/home1/background.svg") no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover; 
  object-position: center;
}



.mac {
    display: flex;
    z-index: 12;
    width: 450px;
    height: 450px; 
    position: relative;
    transition: 0.5s ease;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
}

@media (hover: hover) {
.mac:hover {
    opacity: 0;
    animation-delay: 1s;
}

.mac:hover ~ .machover {
    animation: moon 2s;
    animation-delay: 1s;
    margin-top: 20%;
    animation-fill-mode: forwards;
}
}

.maccontainer {
    border-radius: 50%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
}



@keyframes moon {
    0% {
      transform: translateY(20%) scale(1.2);
      opacity: 0.2;
      margin-top: -140px;
    }
    50% {
    transform: translateY(-40%) scale(1.4);
      opacity: 0.6;
      margin-top: -160px;
    }
    65% {
    transform: translateY(-40%) scale(1.4);
      opacity: 0.8;
      margin-top: -160px;
    }
    80% {
    transform: translateY(-40%) scale(1.6);
      opacity: 0.9;
      margin-top: -180px;
    }
    100% {
      transform: translateY(-40%) scale(1.6);
      opacity: 1;
      margin-top: -180px;
    }
  }


  .machover {
    display: flex;
    z-index: 11;
    position: absolute;
    opacity: 0;
    transform: translateY(-100%);
    margin-left: auto;
    margin-right: auto;
  }

