.buttonTryAgain { font-family: 'Open Sans', sans-serif !important; background-color: transparent; border: solid; border-radius: 15px; padding: 2%; border-color: #afb3f7; color: white; transition: all 0.2s ease 0s; } .buttonTryAgain:hover { background-color: #afb3f7; box-shadow: 2px 2px 5px #afb3f7; } .buttonTryAgain:active { background-color: transparent; } .box { text-align: center; display: flex; flex-direction: column; background-color: rgb(122, 147, 172); padding: 10%; color: white; border-radius: 15px; box-shadow: 2px 2px 5px rgb(122, 147, 172) ; -webkit-user-select: none; user-select: none; } .loading { -webkit-animation: rotating 1s linear infinite; animation: rotating 1s linear infinite; width: 30%; height: 30%; } .discord-logo { width: 30%; height: 30%; } .loadingSpan { font-size: 20vw; } @-webkit-keyframes rotating { from{ -webkit-transform: rotate(0deg); transform: rotate(0deg); } to{ -webkit-transform: rotate(360deg); transform: rotate(360deg); } } .infoSpan { color: rgb(40, 40, 40); font-size: 12px; }