body {
    padding: 0;
    margin: 0;
    background-color: rgb(48, 44, 60);
    display: flex;
    justify-content: center;
    align-items: center;
}

.maincont {
    background-color: rgb(218, 218, 218);
    margin: 100px;
    height: 700px;
    width: 900px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.444) 10px 10px 0px;
}

.poebserverbanner {
    background-color: rgb(148, 148, 148);
    box-shadow: rgba(0, 0, 0, 0.444) 0px 5px 0px;
    height: 50px;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(218, 218, 218);
    font-family: "Google Sans Code";
    font-size: 1.5em;
}

.poebserverbanner:hover {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: rgb(218, 218, 218);
}

b {
    color: rgb(0, 255, 221);
}

.gameserverscont {
    display: flex;
    height: 550px;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.gameserverminecraft {
    width: 300px;
    height: 400px;
    margin: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-family: "Google Sans Code";
    font-size: 1.5em;
    color: white;
    text-shadow: black 3px 2px 0px;
    background-image: url(/images/Survival.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1050px;
    filter: saturate(0);
    box-shadow: rgba(0, 0, 0, 0.444) 5px 5px 0px;
    transition: ease-in-out 0.2s;
}

.gameserverminecraft:hover {
    box-shadow: rgba(0, 0, 0, 0.444) 10px 10px 0px;
    font-size: 1.8em;
    cursor: pointer;
    filter: saturate(1);
    background-size: 1100px;
}

.gameserverrust {
    width: 300px;
    height: 400px;
    margin: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-family: "Google Sans Code";
    font-size: 1.5em;
    color: white;
    text-shadow: black 3px 2px 0px;
    background-image: url(/images/rust.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 800px;
    filter: saturate(0);
    box-shadow: rgba(0, 0, 0, 0.444) 5px 5px 0px;
    transition: ease-in-out 0.2s;
}

.gameserverrust:hover {
    box-shadow: rgba(0, 0, 0, 0.444) 10px 10px 0px;
    font-size: 1.8em;
    cursor: pointer;
    filter: saturate(1);
    background-size: 850px;
}

.teamspeakcont {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Google Sans Code";
    font-size: 1.5em;
    color: white;
    text-shadow: black 3px 2px 0px;
    background-image: url(/images/teamspeak.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 900px;
    filter: saturate(0);
    transition: ease-in-out 0.2s;
    border-radius: 0px 0px 10px 10px;
}

.teamspeakcont:hover {
    font-size: 1.8em;
    cursor: pointer;
    filter: saturate(1);
    background-size: 950px;
}

.minecraftserverdetailscont {
    display: flex;
    flex-direction: column;
    height: 550px;
    justify-content: center;
    align-items: center;
    font-family: "Google Sans Code";
    background-image: url(/images/Survival.webp);
    background-repeat: no-repeat;
    background-position: left;
    filter: saturate(0.3);
    z-index: -1;
}

.rustserverdetailscont {
    display: flex;
    flex-direction: column;
    height: 550px;
    justify-content: center;
    align-items: center;
    font-family: "Google Sans Code";
    background-image: url(/images/rust.jpg);
    background-repeat: no-repeat;
    background-position: left;
    filter: saturate(0.3);
    z-index: -1;
}

.tsserverdetailscont {
    display: flex;
    flex-direction: column;
    height: 550px;
    justify-content: center;
    align-items: center;
    font-family: "Google Sans Code";
    z-index: -1;
}

.servertitle {
    font-size: 3em;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.375);
    color: white;
}

.serverspeal {
    text-align: center;
    margin: 20px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.375);
    color: white;
    font-size: 1.1em;
}

.serverip {
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.375);
    color: white;
    font-size: 1.5em;
}

.teamspeakdownload {
    text-decoration: underline;
    color: rgb(0, 255, 221);
}