@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Moo+Lah+Lah&family=Sofia&display=swap');

body {
    background: linear-gradient(135deg, #7f44be, #5e8ee0); 
    margin: 0;
    font-family: "Sour Gummy", sans-serif;
    color: white;
}

h1 {
    font-size: 55px;
    text-align: center;
    background: linear-gradient(90deg, #eaeeee, #db3f6e); 
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: "Sour Gummy";
    margin-top: 20px;
    transition: all 0.3s ease;
}

h2 {
    text-align: center;
    font-size: 35px;
    background: linear-gradient(90deg, #9bf0eb, #0ecbe0); 
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 10px;
    transition: all 0.3s ease;
    font-family: "Moo Lah Lah", sans-serif;
}

h1:hover {
    transform: translateY(-10px);
    text-shadow: 0px 4px 15px rgba(255, 204, 0, 0.6);
}

h2:hover {
    transform: translateY(-5px);
    text-shadow: 0px 4px 15px rgba(0, 229, 255, 0.6);
}

.medallas {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.medalla {
    width: 70px;
    height: 70px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, #ebc8c9, #fad0c4); /* Rosa degradado */
}

.medalla:hover {
    transform: scale(1.3) rotate(10deg);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.foto {
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.foto:hover {
    box-shadow: 0px 8px 30px rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}
