body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #00c6ff, #0072ff, #00c6ff, #0072ff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    font-family: 'Poppins', sans-serif; /* Aplică fontul Poppins pentru întreaga pagină */
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 300px; /* Dimensiune crescută */
    height: 300px; /* Dimensiune crescută */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    animation: float 3s ease-in-out infinite; /* Durata redusă pentru animație mai rapidă */
}

.circle:nth-child(2) {
    width: 400px; /* Dimensiune crescută */
    height: 400px; /* Dimensiune crescută */
    animation: float 4s ease-in-out infinite; /* Durata redusă pentru animație mai rapidă */
}

.circle:nth-child(3) {
    width: 500px; /* Dimensiune crescută */
    height: 500px; /* Dimensiune crescută */
    animation: float 5s ease-in-out infinite; /* Durata redusă pentru animație mai rapidă */
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); } /* Am crescut amplitudinea mișcării */
}

/* Stilizare pentru buton */
.portfolio-button {
    position: relative;
    z-index: 10;
    padding: 15px 30px;
    background-color: #0072ff;
    color: white;
    font-size: 18px;
    font-weight: 600; /* Folosește grosimea fontului Poppins */
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
    font-family: 'Poppins', sans-serif; /* Aplică fontul Poppins pentru buton */
}

.portfolio-button:hover {
    background-color: #005bb5;
    transform: scale(1.1);
}

.portfolio-button:active {
    transform: scale(0.95);
}

/* Text in centrul cercului */
.status-text{
    color:rgb(0, 0, 0);
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: min(90%, 520px);
    font-size: clamp(18px, 2.8vw, 34px);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.35);
    pointer-events: none;
    user-select: none;
}

