﻿/* Estilos para la vista Home/Index.cshtml */

.container {
    margin-top: 60px;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

.row {
    margin-top: 30px;
    justify-content: center;
}

/* Estilo general para TODOS los botones dentro del contenedor */
.container .btn {
    font-size: 1rem !important;
    padding: 12px 20px !important;
    transition: transform 0.2s ease;
    white-space: normal; /* Por si hay textos con saltos o emojis */
}

    /* Efecto hover personalizado */
    .container .btn:hover {
        transform: scale(1.05);
        z-index: 1;
        position: relative;
    }
