body {
    background-color: #0a0a0a;
    color: white;
    font-family: "Quicksand";
    margin: 0;
    font-weight: bold;
}

.top {
    font-size: 20px;
    background-color: #1d1d1da4;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding:10px;
    user-select: none;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;

}

.top img {
    max-width: 150px;
    vertical-align: middle;
}

.main {
  align-items: center;
  padding-left:35%;
  padding-right: 35%;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .main {
      padding-left:10%;
  padding-right: 10%;
  }
}

#api-connection {
    color:gray;
}

#statusbar {
    background-color: rgb(44, 44, 44);
    border-radius: 100px;
    max-width:100%;
    height: 5px;
    
}

#statusreason {
    color:rgb(173, 173, 173);
}


a {
    text-decoration: underline;
    color: gray;

}

button {
    background-color: #181818;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
    color:white;
    padding:10px;
    border: none;
    border-radius: 4px;
    transition: 0.2s;
}

button:hover {
    background-color: #313131;
    box-shadow: rgba(255, 255, 255, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}