
.container {
   margin: 0 auto;
    position: relative;  
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 73%;
    width: 100%;
    background: #ffffff url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2380d4e8" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path><path fill="%2380d4e8" fill-opacity="0.2" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    backdrop-filter: blur(10px);
}

.logoAnv {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(128, 212, 232, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}


h1 {
    font-family: 'Prompt', sans-serif;
    color: #009FA5;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        max-width: 95%;
        padding: 20px;
        border-radius: 15px;
    }
    
 
    
    h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 98%;
        padding: 15px;
        border-radius: 10px;
    }
    
    h1 {
        font-size: 20px;
        line-height: 1.4;
    }
}
