.containerServer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1000px;
    z-index: 2;
}
.containsServer{
    width: 300px;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containsServerImgText{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 250px;
    height: auto;
    transition: box-shadow .2s, transform .2s, filter 1.4s;
    border: black 2px solid;
    cursor: pointer;
    filter: brightness(0.8);
    text-shadow: initial;
}
.containsServerImgText:hover{
    transform: scale(1.15);
    box-shadow: black 5px 5px 10px 0px;
}
.containsServerImgText:hover > .containsServerText{
    top: 0;
}
.containsServerImg{
    width: 250px;
    height: auto;
}
.containsServerText{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 150px;
    right: 0;
    left: 0;
    transition: .5s;
    background-color: rgba(255,255,255,.8);
    font-family: 'Black Ops One', cursive;
}
.serverText{
    font-size: 16px;
    /* font-weight: bold; */
    color: black;
    text-align: center;
}
.serverTextError{
    font-size: 16px;
    /* font-weight: bold; */
    color: #990000;
    text-align: center;
}
.serverTextInfo{
    font-size: 12px;
    /* font-weight: bold; */
    color: black;
    text-align: center;
}