@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;700;900&display=swap');

body {
    background: #0c0c0c;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;

    margin: 0;
    padding: 0;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.header img {
    width: 3rem;
    height: 3rem;
    margin-right: 2rem;
}

.header h1 {
    font-size: 3rem;
    font-weight: 900;
}


.servers {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.servers a {
    text-decoration: none;
}

.server {
    padding: 1rem 1rem;
    border-radius: 1rem;

    width: 2rem;
    height: 2rem;

    font-size: 1.5rem;

    background: #1f1f1f;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.server:hover {
    background: #2f2f2f;
    transform: scale(1.05);
}