@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
:root {
  color-scheme: dark;
}

body {
  background: rgb(255, 255, 255);
  background: linear-gradient(16deg, rgba(255, 255, 255, 0) 0%, rgba(100, 202, 203, 0.4) 100%);
  padding: 0;
  margin: 0;
  font-family: Inter;
  overflow-x: hidden;
}

.panel {
  min-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

#panel-header {
  background-image: url(background.png);
  background-size: cover;
}
#panel-header .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: 40px;
  width: 90%;
  position: absolute;
}
@media (max-width: 960px) {
  #panel-header .header {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}
#panel-header .header img {
  width: 90px;
  height: 90px;
}
@media (max-width: 960px) {
  #panel-header .header img {
    width: 25vh;
    height: 25vh;
  }
}
#panel-header .header .header-buttons {
  display: flex;
  gap: 50px;
}
#panel-header .header .header-buttons a {
  color: #B6B6B6;
  text-decoration: none;
  transition: 200ms all;
}
#panel-header .header .header-buttons a:hover {
  color: #FFF;
  cursor: pointer;
  text-shadow: 0px 0px 5.7px rgba(255, 255, 255, 0.45);
}
@media (max-width: 960px) {
  #panel-header .header .header-buttons {
    display: none;
  }
}
#panel-header .content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 120px;
  gap: 20px;
}
@media (max-width: 960px) {
  #panel-header .content {
    margin-left: -30px;
    transform: scale(0.7);
  }
}
#panel-header .content .heading {
  font-weight: 600;
  font-size: 57px;
  color: #FFF;
}
@media (max-width: 960px) {
  #panel-header .content .heading {
    font-size: 40px;
  }
}
#panel-header .content .heading .fade {
  background: linear-gradient(90deg, #64cacb 0%, #FFF 15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#panel-header .content .description {
  font-size: 19px;
  color: #999999;
}
#panel-header .content .buttons {
  display: flex;
  gap: 10px;
}
#panel-header .content .buttons a {
  text-decoration: none;
}
#panel-header .content .buttons button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: 0;
  border: 0;
  font-family: Inter;
  border-radius: 7px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 200ms all;
}
#panel-header .content .buttons button i {
  margin-top: 2px;
}
#panel-header .content .buttons .button-discord {
  background: #2F2F2F;
  color: #999999;
}
#panel-header .content .buttons .button-discord:hover {
  background: #3d3d3d;
}