* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    width: 100%;
    background: rgb(241, 241, 241);
    /* background: linear-gradient(112deg, rgba(204,255,222,1) 0%, rgba(151,255,147,1) 52%, rgba(0,252,16,1) 100%);     */
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-style: normal;
}

header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: rgba(127, 234, 255, 0.5);
    background: linear-gradient(100deg, #bbdffb 0%, #90cbf9 54%, #64b7f6 100%);
    padding: 1rem 2rem;
    align-items: center;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #000;
    z-index: 99998;
}

header .back {
    cursor: pointer;
    transform: scale(1.5); 
    display: inline-block;
}

header .logo img {
    width: 100%;
    height: 10vh;
}

header .title {
    font-size: 1.3rem;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.card .sri, .card .reina{
    font-size: 1.4rem;
}

.card img {
    object-fit: cover;
    width: 100%;
    height: 40vh;
    border-radius: 30px;
}

.card p {
    color: #4d4d4d;
    font-size: 1em;
}

.button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.button:hover {
    background: #1a252f;
}

footer {
    background: rgba(127, 234, 255, 0.5);
    background: linear-gradient(100deg, #bbdffb 0%, #90cbf9 54%, #64b7f6 100%);
    padding: 0.5rem;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    html {
        font-size: 80%;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 60%;
    }