@font-face {
    font-family: custom-header;
    src: url(fonts/Shine-in-Valentine.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: custom-subtitle;
    src: url(fonts/AceSans-FREE.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: custom-description;
    src: url(fonts/Louis-George-Cafe.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0
}
a{
    text-decoration: none;
}

.content-container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    width: 80%;
    margin: auto;
    gap: 20px;
    text-align: center;
}
.title{
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: #1B4F72;
    margin-top: 5%;
    font-family: custom-subtitle;
}

.card-container {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    margin: 20px auto; 
}


@keyframes breathing {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.card {
    box-sizing: border-box;
    width: clamp(200px, 15vw, 300px);
    height: clamp(250px, 20vw, 350px);
    background: #fae694;
    border: 1px solid white;
    box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    border-radius: 17px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    color: #8f4c1a;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
}

.card:hover {
    border: 1px solid black;
    transform: scale(1.01);
}

.card:hover {
    animation: breathing 2s infinite ease-in-out;
}


