.revista {
    text-align: center;
    background-color: #f0f0f0;
    padding: 20px;
}

.image {
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 40%; /* Adjusts to fit the screen */
}

.buttons button {
    background-color: #E30079;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .buttons button {
       
        padding: 8px 16px; /* Adjust button padding for smaller screens */
        font-size: 14px;
    }
    .image{
        max-width: 40%;
    }
}