/* Full viewport setup */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}


/* Scrollable container for text elements */
.scroll-container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Top left text */
.top-left-text {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5em;
    z-index: 2;
}

/* Center text styling */
.center-text {
    position: absolute;
    top: 50vh; /* Start 75% down the viewport height */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    z-index: 1;
}

.center-text hr {
    width: 60%;
    border: 0.5px solid white;
}

/* Button container section */
.scroll-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    opacity: .50;
    transition: opacity 0.5s ease-in-out;
}

body.scrolled .scroll-section {
    opacity: 1;
}

/* Button styling */
button {
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: #ffffff00;
    color: white;
    border-color: white ;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
