
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
    background: url('/IMG_1238.webp') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
}
.container {
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .container {
        width: 85%;
        padding: 1.5rem;
        margin: 1rem auto;
    }
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
}
p {
    color: rgb(107, 114, 128);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.card {
    max-width: 250px;
    height: 120px;
    margin: 1.5rem auto;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .card {
        max-width: 90%;
        height: auto;
        min-height: 100px;
        margin: 1rem auto;
    }
}
.card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .card p {
        font-size: 1rem;
        text-align: center;
    }
}
