@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    background-color: #f4f4f9;
}

#logo {
    max-width: 150px !important;
    margin: 30px auto;
    display: block;
}

.flex-2 {
    display: flex;
    justify-content: center;
}

.select {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
}

.select select {
    font-family: 'Poppins', sans-serif;
    width: 120px;
    padding: 10px 15px;
    border: 2px solid #d0b26e;
    border-radius: 10px;
    background: #fff;
    color: #333;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.select select:hover,
.select select:focus {
    background: #d0b26e;
    color: #fff;
}

#fetchButton {
    background-color: #C8ADC6;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 300px;
}

#fetchButton:hover {
    background-color: #896081;
}

.celeb-image {
    min-width: 100%;
    border-radius: 10px 10px 0 0;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

a {
    color: #000;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.card {
    display: inline-block;
    text-align: center;
    border-radius: 10px;
    margin: 20px 10px;
    padding: 0;
    background-color: #D0B26E;
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.name {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px;
}


.age {
    font-size: 18px;
    color: #444;
}

.section {
    background-color: #f4f4f9;
    padding: 20px;
}

.btnSeeMore {
    display: block;
    margin: auto;
    background-color: #C8ADC6;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btnSeeMore:hover {
    background-color: #896081;
}

.noDisplay {
    display: none;
}

@media only screen and (max-width: 390px) {
    .card {
        max-width: 160px;
    }

    .name {
        font-size: 16px;
    }

    .age {
        font-size: 12px;
    }
}
