body {
    font-family: Roboto, Arial, sans-serif;
    background-color: #141414;
    margin: 0;
}

a {
    text-decoration: none;
    color: white;
}

.center {
    position: absolute;
    background-color: #323232;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    width: 60%;
    height: 50%;
    border-radius: 1rem;
}

.grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 50px;
}

.header {
    display: block;
    position: absolute;
    top: -3rem;
    background-color: #323232;
    border-radius: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    font-size: 3.5rem;
    text-wrap: nowrap;
    color: white;
    text-shadow: -3px 3px 8px rgb(0 0 0 / 75%);
    text-align: center;
}

.server {
    background-color: #262626;
    text-align: center;
    position: relative;
    border-radius: 1rem;
    box-shadow: -5px 5px 13px -6px rgb(0 0 0 / 75%);
    transition: scale 0.3s, background-color 0.3s;
    scale: 1;
}

.server:hover {
    scale: 1.02;
    background-color: rgb(43, 43, 43);
}

.server img {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    max-width: 75%;
    max-height: 75%;
}

.server .title {
    position: absolute;
    font-size: 3rem;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 1100px) {
    .center {
        min-width: 80% !important;
    }
    .header {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .center {
        min-width: 70% !important;
        min-height: 70% !important;
    }
    .grid {
        grid-template-columns: repeat(1, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        width: 90%;
        margin: auto;
    }
}