
/* div.button{
    padding: 10px;
    border-radius: 5px;
    background: #2C3E50;
} */
body{
    scale: 0.9;
}

div.buttons{
    max-width: 80vw;
    position: relative;
    display: flex;
    width: fit-content;
    height: fit-content;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

a{
    font-stretch: condensed;
    height: fit-content;
    min-width: calc(100% - 50px);
    max-width: calc(100% - 50px);
    width: fit-content;
    padding: 14px 45px;
    border-radius: 10px;
    background: #2C3E50;
    color: #F8F9F9;
    text-decoration: none;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
}
a:hover{
    background: #34495E;
}

#authBttn:hover{
    background: #5D6D7E;
}

a img{
    vertical-align: text-top;
    height: 30px;
    width: 30px;
    margin-right: 15px;
}

#TopPlayerContainer{
    animation-name: bestContainerAnimation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes bestContainerAnimation {
    0% {scale: 1;}
    50% {scale: 0.95;}
    100% {scale: 1;}
}

#auth{
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgba(28, 40, 51, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#auth input:not(input[type="submit"]){
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 0px 45px;
    border-radius: 10px;
    width: 390px;
    height: 55px;
    max-height: 20%;
    max-width: 60%;
    outline: none;
    border: none;
    stroke: none;
    background: white;
    background-color: none;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #FC4165;
}

#auth input:not(input[type="submit"])::placeholder{
    color: #2C3E50;
}

#auth div{
    position: relative;
    width: 390px;
    height: 55px;
    max-height: 20%;
    max-width: 60%;
    justify-content: space-evenly;
    display: flex;
    gap: 10px;
    align-items: center;
}

#auth div button, 
#auth div input[type="submit"]{
    position: relative;
    width: 100%;
    height: 55px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    border: none;
    stroke: none;
    background: white;
    color: #2C3E50;
}

#auth div button:hover, #auth div input[type="submit"]:hover{
    background: #FC4165;
    color: white;
}

#buttons p{
    position: relative;
    color: white;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
}

#buttons p button{
    vertical-align: middle;
    margin-left: 15px;
    width: 30px;
    height: 30px;
    background: #FC4165;
    outline: none;
    border: none;
    stroke: none;
    color: white;
    font-weight: 1000;
    border-radius: 2.5px;
}

#buttons p button:hover{
    background: #fc5374;
    cursor: pointer;
}

#logo{
    transition: 0.2s;
}

#logo:hover{
    transform: rotate(5deg);
}
