*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Inter,sans-serif;

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.7)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");

    background-size:cover;
    background-position:center;

    color:white;

    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{

    text-align:center;
}

h1{

    font-family:Cinzel,serif;
    font-size:64px;
    color:#d8b45b;

    margin-bottom:15px;
}

.subtitle{

    color:#d5d5d5;
    margin-bottom:60px;
    font-size:20px;
}

.cards{

    display:flex;
    gap:40px;
    justify-content:center;
    flex-wrap:wrap;
}

.card{

    width:260px;

    padding:40px;

    border-radius:18px;

    text-decoration:none;

    color:white;

    backdrop-filter:blur(10px);

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    transition:.3s;
}

.card:hover{

    transform:translateY(-8px);

    border-color:#37d0c3;

    box-shadow:0 0 30px rgba(55,208,195,.35);
}

.card h2{

    font-family:Cinzel;
    color:#37d0c3;

    margin-bottom:15px;
}