/* General Reset */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: black;
    color: white;
}

/* Background Image */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/nasa-Yj1M5riCKk4-unsplash.jpg') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;
}

/* Toolbar */
.toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

/*.toolbar .logo img {
    height: 120px;
    width: auto;
    margin-left: -20px;
}*/

/* Container */
.container {
    max-width: 1200px;
    margin: 100px auto 10px;
    padding-top: 125px;
    position: relative;
    z-index: 1;
}

/* Title */
.title {
    font-size: 100px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(to right, #007bff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.7);
    padding: 10px;
    display: inline-block;
}

/* Acronym Section */
.acronym {
    font-size: 22px;
    margin-top: 15px;
    font-style: italic;
    text-align: center;
    font-weight: bold;
    text-shadow: -1px -1px 0 #000, -1px -1px 0 #000, -1px -1px 0 #000;
}

/* Sub Title */
.subtitle {
    font-size: 20px;
    margin-top: 15px;
    font-style: italic;
    text-align: center;
    font-weight: bold;
    text-shadow: -1px -1px 0 #000, -1px -1px 0 #000, -1px -1px 0 #000;
}

/* Details Section */
.details {
    text-align: center;
    max-width: 1100px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: -1px -1px 0 #000, -1px -1px 0 #000, -1px -1px 0 #000;
}

/* Call-To-Action */
.cta {
    margin-top: 50px;
}

.cta a {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.cta a:hover {
    background-color: #0056b3;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 1;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    background: rgba(0, 0, 0, 0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 50px;
    }

    .acronym {
        font-size: 16px;
    }

    .subtitle {
        font-size: 18px;
    }

    .details {
        font-size: 16px;
        padding: 0 10px;
    }

    .cta a {
        font-size: 16px;
        padding: 10px 20px;
    }

    .container {
        padding: 50px 20px;
    }

    .toolbar .logo img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 36px;
    }

    .acronym, .subtitle {
        font-size: 14px;
    }

    .details {
        font-size: 14px;
    }

    .cta a {
        font-size: 14px;
        padding: 8px 15px;
    }

    .toolbar .logo img {
        height: 60px;
    }
}
