body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #FDF0E1; 
    color: #FF7F50;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.top-right {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}

.socials {
    margin-top: 10px;
}

.socials a {
    color: #0b0a0a;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s;
}

.socials a:hover {
    color: #FDF0E1;
}

#main-content {
    text-align: center;
}

#main-content .logo {
    width: 200px; 
    margin-bottom: 20px;
}

#main-content h2 {
    font-size: 4em;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0.5em 0;
}

#main-content h3 {
    font-size: 1em;
    margin: 0.2em 0;
}

#bottom-button {
    position: absolute;
    bottom: 60px;
}


.glass-button {
    display: inline-block;
    padding: 24px 32px;
    border: 0;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.02); /* Almost fully transparent */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border for visibility */
    backdrop-filter: blur(20px); /* Mild blur effect */
    color: rgba(255, 255, 255, 0.8); /* Lighter text color */
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
}

.glass-button:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly increased opacity on hover */
}

.logo {
    width: 150px;
    transition: width 0.3s;
}

.logo.large {
    width: 300px; 
}
