/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#welcome-overlay img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    cursor: pointer; /* Cambia el cursor al pasar sobre la imagen */
}

#close-x {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#close-x:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#close-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #2f7a39;
    color: #e5e434;
    border: none;
    border-radius: 5px;
}

#close-button:hover {
    background-color: #e5e434;
}

#main-content {
    padding: 20px;
}