body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.loader { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
} 
.loader img { 
    width: 100px; /* Ajusta el tamaño del logotipo */ 
    animation: pulse 1.5s infinite; /* Añade una animación de pulsación */ 
} 
@keyframes pulse { 
    0% { 
        transform: scale(1); 
    } 
    50% { 
        transform: scale(1.1); 
    } 
    100% { 
        transform: scale(1); 
    } 
}

.hero {
    background-image: url('Barberia.jpg'); /* Reemplaza con tu imagen de fondo */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Oscurece la imagen de fondo */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin: 0 0 20px;
}

.hero p {
    font-size: 1.5em;
    margin: 0 0 20px;
}

.btn {
    background-color: #ff5733; /* Color del botón */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

.btn:hover {
    background-color: #c7462c; /* Color del botón al pasar el cursor */
}

.logo {
    width: 200px; /* Ajusta el tamaño según tus necesidades */
    margin-bottom: 20px;
}
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    text-align: center;
    padding: 20px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.title {
    color: grey;
    font-size: 18px;
}

.social-media a {
    text-decoration: none;
    font-size: 22px;
    color: black;
    margin: 0 10px;
    display: inline-block;
}

.social-media a:hover {
    color: grey;
}

