body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    z-index: 0;
}

.content {
    color: white;
    position: relative;
    z-index: 2;
    max-width: 80%;
    margin-top: -300px;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-width: 350px;
    width: 100%;
    margin-bottom: 20px;
}


h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.line {
    font-weight: bold;
    font-size: 1.6rem;
}

p {
    font-size: 1.2rem;
    color: white;
    margin-block-end: 0em !important;
}

.footer {
    position: absolute;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}