body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

header {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%;
    text-align: left;
    padding: 2px; 
    z-index: 2; 
    margin-bottom: 0;
    padding-bottom: 0; 
    margin-left: 10px;
}

header a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

header a:hover {
    color: #4CAF50; 
}

.description-text {
    color: white;
    font-size: 12px;
    margin-top: -35px;
}



.background {
    position: relative;
    height: 100%;
    width: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
}

.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade para escurecer mais ou menos */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    height: 100vh; 
    padding-top: 80px; 
}

.message {
    font-size: 2.5em;
    margin-bottom: 40px;
    padding: 0 20px;
    margin-top: -50px; 
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center; 
}


.btn {
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


.btn-blue {
    background-color: #007BFF;
}

.btn-blue:hover {
    background-color: #0056b3; 
}


.btn-green {
    background-color: #28a745;
}

.btn-green:hover {
    background-color: #218838; 
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #4CAF50; 
}
