*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #33ccff 0%, #2d19e0 100%);
    background-size: cover;
    background-position: center;
    font-family: 'Roboto Condensed',sans-serif;
}

p{
    font-weight: bold;
    color: rgb(255, 255, 255);
    font-family: 'Roboto Condensed', Times, serif;
    
}

.container{
    position: relative;
    width: 90%;
    height: 87vh;
    border: 10px solid navy;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
    inset 60px 0 120px rgb(79, 177, 222),  /* left magenta */
    inset -60px 0 120px rgb(252, 252, 252); /* right cyan */;
}
.container2{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    border-radius: 25px;
}
.container3{
    position: relative;
    top: 100;
    left: 10;
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    
    border-radius: 1px;
}

.logout{
    position: absolute;
    top: 10px;
    right: 0;
    padding: 10px 20px;
    text-transform: capitalize;
    font-size: 16px;
    color: white;
    text-decoration: underline;



}

.welcome{
    font-family: 'Roboto Condensed';
    font-size: 100px;
    color: rgb(248, 248, 248);
    font-weight: 800;
    text-transform: capitalize;
    

}
.animals img{
    width: 60px;
    animation: moveAnimals 7s linear infinite;
}
.animals{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0%;

}
@keyframes moveAnimals {
    0%{
        transform: translateY(-50%);
        opacity: 0;
        left: 100%;
    }
    50%{
       
        opacity: 1;
    }
    70%{
       
        opacity: 1;
    }
    100%{
        transform: translateY(-80vh);
        opacity: 0;
        left: -150%;
    }
}

.animals img:nth-child(1){
    width: 20px;
    animation-delay: 2s;
}
.animals img:nth-child(2){
    width: 40px;
    animation-delay: 1s;
}
.animals img:nth-child(3){
    width: 100px;
    animation-delay: 3s;
}
.animals img:nth-child(4){
    width: 60px;
    animation-delay: 4.5s;
}

.bubbles img{
    width: 60px;
    animation: bubble 7s linear infinite;
}

.bubbles {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;

}
@keyframes bubble {
    0%{
        transform: translateY(0);
        opacity: 0;
    }
    50%{
       
        opacity: 1;
    }
    70%{
       
        opacity: 1;
    }
    100%{
        transform: translateY(-80vh);
        opacity: 0;
    }
}
.bubbles img:nth-child(1){
    width: 20px;
    animation-delay: 2s;
}
.bubbles img:nth-child(2){
    width: 40px;
    animation-delay: 1s;
}
.bubbles img:nth-child(3){
    width: 15px;
    animation-delay: 3s;
}
.bubbles img:nth-child(4){
    width: 60px;
    animation-delay: 4.5s;
}
.bubbles img:nth-child(5){
    width: 35px;
    animation-delay: 3s;
}
.bubbles img:nth-child(6){
    width: 70px;
    animation-delay: 2s;
}
.bubbles img:nth-child(7){
    width: 30px;
    animation-delay: 2s;
}

#moving-banner {
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
}

#moving-banner p {
    display: inline-block;
    animation: scroll-text 15s linear infinite;
    width: 70%;
    color: black;
    background-image: url("https://png.pngtree.com/png-vector/20230912/ourmid/pngtree-old-long-banner-documents-png-image_9523515.png");
    background-size: 100% 100%;
    padding: 12px;
}

@keyframes scroll-text {
    0% {
        transform: translateX(-130%);
    }
    100% {
        transform: translateX(130%);
    }
}