/* General Styles */
body {
    background-color: #fee440;
    margin: 0;
    overflow: hidden;
    font-family: 'Raleway', sans-serif; /* Add Raleway font */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center everything */
    height: 100vh;
    color: black;
    text-align: center; /* Ensure text alignment is centered */
}

/* SVG Background */
svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

/* Logo Styles */
.logo {
    position: fixed;
    top: 20px;
    right: 20px;
    max-height: 50px; /* Adjust the size as needed */
    padding: 10px;
}

/* Raleway Text Styles */
.raleway-text {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.raleway-light {
    font-weight: 100;
    font-size: 2.5vw;
    margin: 10px 0;
}

/* Footer Styles */
footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    text-align: center;
    width: 100%;
}

/* Make everything centered and fully filled on mobile */
@media (max-width: 1024px) {
    .text-container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .text-right {
        padding-left: 0;
        margin-top: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .text-container {
        width: 100%; /* Full width */
        margin-bottom: 50px;
        text-align: center; /* Center text */
        padding: 20px;
    }
    .raleway-light {
        font-size: 5vw;
    }
    .text-right {
        font-size: 0.9rem;
        text-align: center; /* Center text */
    }
    footer {
        position: relative;
        text-align: center;
        padding-bottom: 20px;
    }
}
