#startScreen{
    position:fixed;
    inset:0;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999;
    cursor:pointer;
}

#startScreen h1{
    color:gold;
    font-size:3rem;
    text-shadow:0 0 20px gold;
}

.cards{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    margin-top:50px;
}

.card{
    width:220px;
    height:220px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.15);

    border-radius:25px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
    text-decoration:none;

    font-size:60px;

    transition:all .35s ease;

    box-shadow:
        0 0 15px rgba(0,0,0,.4);
}

.card span{
    margin-top:15px;
    font-size:20px;
    font-weight:600;
}

.card:hover{

    transform:
        translateY(-10px)
        scale(1.05);

    background:
        rgba(255,215,0,.15);

    border-color:gold;

    box-shadow:
        0 0 25px gold,
        0 0 50px rgba(255,215,0,.4);
}

.card::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:25px;
    opacity:0;
    transition:.3s;
}

.card:hover::before{
    opacity:1;
}

