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

body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    color: #fff;
}

.card {
    background-color: #fff;
    color: #000;
    max-width: 600px;
    text-align: center;
    border: 1px solid #000;
    padding: 40px;
    margin: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}

.card img {
    max-width: 300px;
    margin-bottom: 20px;
    display: inline-block;
}

.card h1 {
    font-size: 2.2em;
    font-weight: 700;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card p {
    margin: 10px 0;
    font-size: 1.1em;
    line-height: 1.5;
}

.card a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #000;
    transition: border-bottom 0.2s;
}

.card a:hover {
    border-bottom: 2px solid #000;
}

@media (max-width: 600px) {
    .card {
        padding: 20px;
    }

    .card h1 {
        font-size: 1.8em;
    }

    .card p {
        font-size: 1em;
    }
}
