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

body {
    font-family: 'Varela Round', sans-serif;
    background: url('../img/businessman-talking-phone.jpg') no-repeat center center/cover;
    text-align: center;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out;
}

/* Animación de fade-in */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    display: block;
    width: 200px;
    padding: 15px;
    font-size: 20px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
    border: solid 1px;
    box-shadow: inset -5px -10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: scale(1); /* Asegura que no se agrande al principio */
}

/* Animación de hover - Agrandar el botón */
.button:hover {
    transform: scale(1.1); /* Se agranda ligeramente al pasar el ratón */
}

/* Colores de los botones */
.ads { background: #ffffff; color:#d9534f; }
.ads:hover { background: #dedede; }
.anydesk { background: #d9534f; }
.anydesk:hover { background: #b52b27; }
.rustdesk { background: #007bff; }
.rustdesk:hover { background: #0056b3; }

.translate-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    background: #ffcc00;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
        gap: 10px;
    }
    .button {
        width: 100%;
        max-width: 250px;
    }
}
