@font-face {
    font-family: 'Eurostile LT Std Bold';
    src: url('eurostile-lt-std-bold.otf');
}
body{
    font-family: 'Eurostile LT Std Bold', sans-serif;
}
@keyframes gradientAnimation {
    0% {
        background-position: 0% -20%;
    }
    50% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% -20%;
    }
}

@keyframes server_status_dot {
    0% {
        background-color: #40FFB6;
    }
    50% {
        background-color: #24B37C;
    }
    100% {
        background-color: #40FFB6;
    }
}

.dive_logo {
    height: 26vh;
    width: 16vh;
    background: linear-gradient(to top, #19114A 40%, transparent 96%);
    background-size: 100% 150%;
    animation: gradientAnimation 3s infinite;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: center;
    color: white;
    font-size: 5vh;
    /* position: absolute; */
    font-weight: 700;
    /* top: 50%;
    left: 50%; */
    /* transform: translate(-50%, -50%); */
    background-repeat: no-repeat;
    /* border: 1px solid grey; */
}

.container{
    display: flex;
    flex-direction: column;
    /* background-color: #E4E4E4; */
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    /* left: 50%;  */
    /* justify-content: center; */
    align-items: center;
    /* height: 38vh; */
    width: 32vh;
    border-radius: 1.6vh;
}
.container .Label{
    height: 4vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #19114A; */
    color: #424242;
    font-size: 1.6vh;
    font-weight: 700;
    margin: .8vh 0;
}
/*uma barra cinza que fica logo abaixo do elemento .Label*/
.container .Label::after{
    content: '';
    height: .24vh;
    width: 100%;
    background: linear-gradient(to right, white, #19114A 25%, #19114A 75%, white);
    position: absolute;
    /* bottom: 4vh; */
    align-self: self-end;
}

.root
{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.server_info{
    height: 3.2vh;
    min-width: 6.4vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 2vh;
    padding: .24vh 1.6vh;
    background-color: #E4E4E4;
    border-radius: .6vh;
}
.server_info .dot_status{
    height: 2vh;
    width: 2vh;
    border-radius: 50%;
    margin-right: 1vh;
}
.dot_status.online{
    background-color: #40FFB6;
    animation: server_status_dot 3s steps(1) infinite;
}
.container #serverContainer{
    display: flex;
    flex-direction: row;
    gap: .48vh;
    align-items: center;
}