body {
    background: #0b0b0b;
    color: #ccc;
    font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.header {
    text-align: center;
}

.panel {
    background-color: #111;
    border-radius: 12px;
    margin: 12px;
    padding: 22px;
}

.servers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.server-link {
    text-decoration: none;
}

.server {
    width: 300px;
    height: 300px;
    text-align: center;
}

.server:hover {
    background-color: white;
    transition: 0.3s;
    scale: 1.02;
}

.server-title {
    font-size: 24px;
}

.server-domain {
    color: black;
    opacity: 0;
}

.server:hover .server-domain {
    opacity: 1;
}

.server img {
    width: 200px;
}

.link-content {
    display: inline-block;
    padding: 8px;
    background: black;
    border: 1px solid #222;
    border-radius: 8px;
    font-family: Arial;
}

.calendar {
    width: 300px;
    margin: auto;
}