#home {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin: auto;

    /* Fixed dimensions to ensure box doesn't resize */
    width: 100ch; /* Limit the width of the box */
    max-width: 90%; /* Ensure responsiveness for smaller screens */
}

#home h1 {
    font-size: 6vmin;
    font-weight: bold;
    margin-bottom: 10px;
    white-space: nowrap; /* Prevent text wrapping */
}

#home h2 {
    font-size: 3vmin;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    white-space: nowrap; /* Prevent text wrapping */

    /* Ensure consistent size for blinking arrows */
    min-width: 50ch; /* Match the width of the box */
    text-align: center;
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.social a {
    text-decoration: none;
    font-size: 2vmin;
    color: white;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social a:hover {
    background: rgba(255, 255, 255, 0.6);
    color: black;
}
