.container {
    display: none;
}

.animate {
    animation: slideUp 0.5s ease-out forwards;
}
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.season {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake, .leaf, .blossom, .redleaf {
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    opacity: 0.8;
}

.snowflake {
    background: #fff;
    border-radius: 50%;
    width: 10px; 
    height: 10px;
    animation: snowfall linear infinite;
}

.leaf, .redleaf {
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px; 
    width: 20px;
    animation: leafFall linear infinite;
}

.blossom {
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px; 
    height: 20px;
    animation: leafFall linear infinite;
}

@keyframes snowfall {
    to {
        transform: translateY(100vh);
    }
}

@keyframes leafFall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}
@media (max-width: 480px) {
    .season .snowflake,
    .season .leaf,
    .season .blossom,
    .season .redleaf {
        width: 15px; 
        height: 15px;
    }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: opacity 0.5s ease;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f5f5f5;
    color: white;
    font-family: 'Arial', sans-serif;
}

.overlay-content {
    text-align: center;
}

html, body {
    overflow: hidden;
}

.overlay h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1rem;
}

body.hidden {
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/1341419.png') no-repeat center center/cover;
    filter: blur(10px);
    z-index: -1;
}

.container {
    background: rgba(0, 0, 0, 0.40);
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: groove white;
}

.banner {
    background-image: url('img/banner.png');
    height: 100px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio-header {
    text-align: center;
    color: white;
}

.bio-header .logo {
    width: 150px;
    height: auto;
    margin-top: 150px;
    border-radius: 10px;
}

.bio-header h1 {
    margin: 0;
    font-size: 24px;
}

.social-icons {
    margin-top: 120px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: white;
    text-decoration: none;
}

.about-me, .favorite-music, .programming-languages, .ide-tools {
    margin: 20px 0;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons img {
    width: 50px;
    height: auto;
    margin: 0 10px;
}

#language-select {
    width: 50%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

#progress-bar-container {
    margin: 20px auto;
    width: 80%;
    background-color: #444;
    border-radius: 5px;
    position: relative;
    height: 25px;
    border: 1px solid #ffffff;
    display: none;
}

#progress-bar {
    background-color: #f00;
    height: 100%;
    width: 0%;
    border-radius: 5px;
    transition: width 0.5s;
}

#progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    z-index: 1000;
}

footer a {
    color: rgb(51, 255, 0);
    text-decoration: none;
}

footer a:hover {
    font-size: 15px;
}
@media (max-width: 480px) {
    .container {
        padding: 10px;
        max-width: 100%;
        margin-top: 20px;
        position: relative;
    }

    .banner {
        height: 60px;
        margin-bottom: 15px;
        position: relative;
    }

    .bio-header .logo {
        width: 80px;
        margin-top: 50px;
    }

    .bio-header h1 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .social-icons {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .social-icons a {
        margin: 0 5px;
        font-size: 16px;
    }

    .about-me, .favorite-music, .programming-languages, .ide-tools {
        margin: 15px 0;
    }

    #language-select {
        width: 100%;
        padding: 5px;
        font-size: 12px;
        margin-bottom: 10px;
    }

    #progress-bar-container {
        width: 100%;
        height: 20px;
        margin-top: 10px;
    }

    #progress-bar {
        height: 100%;
    }

    #progress-text {
        font-size: 10px;
    }

    .container {
        padding: 10px;
        margin-bottom: 60px; 
    }

    footer {
        font-size: 12px;
        padding: 8px;
    }
    footer a {
        font-size: 11px;
    }
}