body {
    background-color: rgb(24, 25, 38) !important;
    background-repeat: no-repeat;
    color: white;
    font-family: 'Unbounded', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Default state: Hidden with fade-in effect */
body {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/* Make the page visible when JavaScript runs */
body.visible {
    opacity: 1;
}

.text-box {
    background-color: rgb(36, 39, 58);
    color: rgb(255, 255, 255);
    padding-top: 7%;
    border-radius: 20px;
    position: fixed;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
    width:40%;
    height: 53%;
    overflow-y: auto;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.header img {
    width: 70px;  /* Icon size */
    height: 70px;
    border-radius: 50%;
}

h1 {
    font-size: 40px;
    margin: 0;
    letter-spacing: 2px;
}

p {
    font-size: 18px;
    opacity: 0.9;
}

.bio {
    margin: auto;
    margin-top: 30px;
    padding-top: 0px;
    border-top: 3px solid rgba(0, 0, 0, 0.2);
    width: 60%;
    flex-direction: column;
    text-align: center; 
}

.bio a {
    color: white; 
    text-decoration: none; 
    font-size: 18px;
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 8px; 
    transition: color 0.3s ease; 
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.bio a:hover {
    color: #0400ff;
}

.bio i {
    font-size: 20px;
}

.button-container {
    position: fixed;
    top: 50px;
    justify-content: center;
    width: 100%;
    flex-direction: row;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(36, 39, 58);
    color: white;
    height: 20px;
    text-decoration: none;
    border-radius: 15px;
    font-size: 16px;
}

.button:hover {
    background-color: rgb(50, 54, 80);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
}

/* Scrollbar codes */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    display: none;
}

/* Firefox: Hide scrollbar but keep functionality */
html, body {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

@media (max-width: 600px) {
    .text-box {
        width: 90%;
    }
}

@media (min-width: 601px) {
    .text-box {
        width: 65%;
    }
}

@media (min-width: 768px) {
    .text-box {
        width: 65%;
    }
}

@media (min-width: 992px) {
    .text-box {
        width: 65%;
    }
}

@media (min-width: 1200px) {
    .text-box {
        width: 40%;
    }
}

.washed-out {
    color: #b0b0b0;
    opacity: 0.6;
    font-style: italic;
}