html, body 
{ 
  height: 100%; 
  margin: 0; 
  background-image: url("https://ygdrzil.neocities.org/Start/stars%20-%20Edited.jpg");
  background-repeat: repeat;
  color: white;
  }
  
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); } 
}
@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.Bigcontainer {
    position: relative;
    width: 1000px;
    height: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.balls {
    position: absolute;
    width: 1000px;
    height: 1000px;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation:  120s linear;
}

.pants {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ball1 { 
    width: 600px; 
    height: 600px; 
    animation: rotate-slow 85s linear infinite; 
}

.ball2 { 
    width: 400px; 
    height: 400px; 
    animation: rotate-reverse 40s linear infinite; 
}

.ball3 { 
    width: 200px; 
    height: 200px; 
    animation: rotate 20s linear infinite; 
}

.Aboutcontainer {
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navigation {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    transform-origin: center;
    background-color: white;

}

.center {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
    margin: 0;
}

.title {
    position: absolute;
    width: 120px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.center .title {
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1; 
}

.pants .title {
    top: 40%;
    left: 40%;
    transform-origin: left center;
    transform: translate(30px, -50%);
    text-align: left;
    margin-left: -60px;
    margin-top: 30px;
    opacity: 0;
}

.navigation:hover .title {
    opacity: 1;
}

.center:hover {
    transform: scale(1.1);
}

.ball1 .navigation { top: -20px; left: 50%; margin-left: -5px; }
.ball2 .navigation { top: 50%; right: -20px; margin-top: -5px; }
.ball3 .navigation { bottom: -20px; left: 50%; margin-left: -5px; }

@media (max-width: 768px) {
    .Bigcontainer {
        width: 100%;
        height: 400px;
        transform: scale(0.8);
    }
    
    .balls {
        width: 350px;
        height: 350px;
    }
    
    .ball1 { width: 280px; height: 280px; }
    .ball2 { width: 200px; height: 200px; }
    .ball3 { width: 140px; height: 140px; }
    
    .navigation {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .center {
        width: 50px;
        height: 50px;
    }
    
    .title {
        font-size: 0.8rem;
    }
    
    .ball1 .navigation { top: -17.5px; margin-left: -17.5px; }
    .ball2 .navigation { right: -17.5px; margin-top: -17.5px; }
    .ball3 .navigation { bottom: -17.5px; margin-left: -17.5px; }
}

h1 {
  font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal; 
  color: white;
}