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

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background: linear-gradient(135deg, #0073e6, #00c6ff);
    color: white;
    text-align: center;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 700px;
    padding: 20px 0;
}

.logo {
    width: 100px;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2.2em;
    margin-bottom: 5px;
}

header p {
    font-size: 1.1em;
    opacity: 0.8;
}

h2 {
    margin-top: 30px;
    font-size: 1.8em;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.card {
    width: 100%;
    max-width: 500px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.card h2 {
    margin: 0;
    font-size: 1.4em;
}

.card p {
    margin: 5px 0 0;
    font-size: 1em;
    opacity: 0.9;
}

/* RESPONSIVE */
@media screen and (max-width: 600px) {
    .container {
        width: 95%;
    }
    .card {
        max-width: 100%;
    }
    header h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.5em;
    }
}