




body {
    background-color: #81CFE6;
}

.about-page {
    background-image: url("confettibg.jpg");
    background-repeat: repeat;
}

.about-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;

    width: 1200px;
    margin: 60px auto;
}







.side-nav a {

    color: #cc493f;

}

.side-nav a:hover {
    color: black;
    background-color: #cc493f;

    border: 1px solid white;
}


.about-main {
    width: 800px;
    flex-shrink: 0;
}


.about-box-small { 
  
    background-color: black; 
    color: white; 
 
    width: 800px; 
    box-sizing: border-box; 
 
    padding: 30px; 
 
    text-align: center; 
 
    border: 3px double white; 
    box-shadow: 4px 4px 0px black; 
    
    margin-left: 50px;
    
     position: relative;
    overflow: hidden;
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-500px) scale(1.2);
        opacity: 0;
    }
}

.bubble {
    position: absolute;

    bottom: -30px;

    width: 20px;
    height: 20px;

    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    animation: bubble-float 6s linear infinite;

    pointer-events: none;
}



.bubble1 {
    left: 10%;
    width: 15px;
    height: 15px;
}

.bubble2 {
    left: 30%;
    width: 25px;
    height: 25px;
    animation-delay: 2s;
}

.bubble3 {
    left: 50%;
    width: 12px;
    height: 12px;
    animation-delay: 1s;
}

.bubble4 {
    left: 70%;
    width: 30px;
    height: 30px;
    animation-delay: 3s;
}

.bubble5 {
    left: 88%;
    width: 18px;
    height: 18px;
    animation-delay: 4s;
}



.about-box {
    background-color: black;
    color: white;

    width: 800px;
    box-sizing: border-box;

    padding: 30px;

    text-align: center;

    border: 3px double white;
    box-shadow: 4px 4px 0px black;
    
    margin-left: 50px;
    margin-bottom: 30px;
}



.about-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}




.rainbow-text {
    background: linear-gradient(
        90deg,
        red,
        orange,
        yellow,
        green,
        blue,
        purple,
        red
    );

    background-size: 200% auto;

    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;

    animation: rainbow 4s linear infinite;
}

@keyframes rainbow {
    to {
        background-position: 200% center;
    }
}






