@font-face {
    font-family: 'Titular';
    src: url('../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
    font-style: italic;
    font-weight: normal;
}
@font-face {
    font-family: 'card';
    src: url('../fonts/EduVICWANTHandPre-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

body{

    background-color: #5A827E;
    margin: 0;
    padding: 10px 20px;
    color: #332f35;
    
}
h1 {
    border-color: #B13BFF;
   border-radius: 20px;
    font-family: 'card', serif;
    font-size: 50px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.profile-pic {
    border-radius: 0%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    margin-top: 10px;
    margin-left: 30px;
}
.profile-pic:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.card {
    font-family: 'titular', sans-serif;
    color: #070606;
    background-color: #84AE92;
    border-radius: 10px;
    padding: 20px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 0 auto;
    text-wrap: wrap;
}
.card h2 {
    font-family: 'card', serif;
    font-size: 30px;
    margin-bottom: 10px;
    color: #070607;
    text-align: center;
}
.card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 30px 35px 40px rgba(105, 1, 1, 0.3);
}
.card-body {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
}
.contacto{
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    color: #070606;
    margin-top: 20px;
}