* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.container {
    width: 940px;
    height: 760px;
    display: grid;
    grid-template-rows: repeat(7, 1fr);
    grid-template-columns: repeat(4, 1fr);
}

.main-image {
    grid-column: 2 / 4;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.text {
    grid-column: 2 / 4;
    grid-row: 5 / 6;
    color: #ffffff;
    font-size: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button {
    grid-column: 2 / 4;
    grid-row: 6 / 7;
    background-color: #0066ff;
    color: #ffffff;
    font-size: 20px;
    padding: 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
    margin: 0 auto;
    width: 60%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    background-color: #0052cc;
}

.close-button:active {
    background-color: #003d99;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .container {
        width: 100vw;
        height: 100vh;
    }
    
    .text {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .close-button {
        font-size: 18px;
        width: 70%;
    }
}

@media (max-width: 480px) {
    .text {
        font-size: 20px;
    }
    
    .close-button {
        font-size: 16px;
    }
}

.close-button:hover {
    background-color: #0052cc;
}

.close-button:active {
    background-color: #003d99;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    body {
        overflow: auto;
    }
    
    .text {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .close-button {
        font-size: 20px;
        margin: 15px 40px;
    }
}

@media (max-width: 480px) {
    .text {
        font-size: 20px;
    }
    
    .close-button {
        font-size: 18px;
        margin: 10px 20px;
    }
}
