html{
  font-family: 'Nunito', sans-serif;
  background-color: #f0f0f0;
}

body{
  padding: 0;
  margin: 0;
  margin: 32px 64px;
}

p,a,h1,h2,h3,h4,h5,button{
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-family: 'Nunito', sans-serif;
  color: rgba(0, 0, 0, 0.8);
}

button{
  font-size: 16px;
}

a{
  transition: 0.25s;
}

a:hover{
  color: white;
}

.text-white-80{
  color: rgba(255, 255, 255, 0.8);
}

.text-orange{
  color: orange;
}

.text-discord{
  color: #5865f2;
}

.text-steam{
  color: #2a475e;
}

.text-success{
  color: #1D976C;
}

.text-error{
  color: #c31432;
}

.text-20{
  font-size: 20px;
}

.text-width-light{
  font-weight: 400;
}

.mr-4{
  margin-right: 4px;
}

.ml-4{
  margin-left: 4px;
}

.width-1per{
  width: 1% !important;
}

.success{
  background-color: #a8e063;
  color: #1D976C;
  padding: 8px;
  border-radius: 4px;
  max-width: 128px !important;
  text-align: center !important;
}

.error{
  background-color: #c31432;
  color: rgba(255,255,255,0.8);
  padding: 8px;
  border-radius: 4px;
  max-width: 128px !important;
  text-align: center !important;
}

header{
  height: 64px;
  background: #141E30;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #243B55, #141E30);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #243B55, #141E30); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 32px;
  margin-bottom: 56px;
}

header nav ul{
  padding: 0;
  margin: 0;
}

header nav ul li{
  list-style: none;
  float: left;
  margin: 0 16px;
}

.accordion {
  background-color: white;
  border-radius: 16px;
  color: rgba(0,0,0,0.8);
  cursor: pointer;
  padding: 0 16px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.accordion p{
  width: 15%;
}

.active, .accordion:hover {
  background-color: rgba(255,255,255,.8);
}

.panel {
  padding: 0 18px;
  border-radius: 16px;
  background-color: white;
  margin: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 16px;
}
