*{
    letter-spacing:2px;
}

.notice{
    background:#1a1d24;
    border-radius:16px;
    padding:20px;
    margin-bottom:30px;
    box-shadow:0 0 20px rgba(0,0,0,0.3);
}

.notice h2{
    margin-bottom:15px;
}

.notice ul{
    list-style:none;
}

.notice li{
    margin-bottom:10px;
    color:#ddd;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#1a1d24;
    border-radius:20px;
    padding:30px 20px;
    text-decoration:none;
    color:white;
    transition:0.2s;
    box-shadow:0 0 20px rgba(0,0,0,0.3);
}

.card:hover{
    transform:translateY(-5px);
    background:#222733;
}

.icon{
    font-size:2.5rem;
    margin-bottom:15px;
}

.title{
    font-size:1.4rem;
    font-weight:bold;
    margin-bottom:8px;
}

.desc{
    color:#aaa;
    font-size:0.95rem;
}

footer{
    text-align:center;
    color:#666;
    margin-top:50px;
    padding-bottom:20px;
}

@media(max-width:700px){

    h1{
        font-size:1.5rem;
    }

    #clock{
        font-size:1.6rem;
    }

    .card{
        padding:25px 15px;
    }
}