@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght,MONO@0,300..800,0..1;1,300..800,0..1&family=Google+Sans+Flex:opsz,slnt,wdth,wght,GRAD,ROND@6..144,-10..0,25..151,1..1000,0..100,0..100&display=swap");
html, body {
  font-family: "Google Sans Flex", sans-serif;
  height: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  color: #E1E4E8;
  background-color: #0E0E11;
}

header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 80px;
  padding: 10px 120px;
  background-color: #FFFFFF;
}
@media (max-width: 1200px) {
  header {
    justify-content: center;
    padding: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1800px) {
  header {
    padding: 10px 30px;
  }
}

footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

#header-name {
  font-size: 25px;
  font-weight: 1000;
  font-stretch: 160%;
  margin: 0;
  text-decoration: none;
  color: #0E0E11;
}

@media (min-width: 1800px) {
  section {
    padding: 0 20%;
  }
}
@media (min-width: 1200px) and (max-width: 1800px) {
  section {
    padding: 0 10%;
  }
}
@media (max-width: 1200px) {
  section {
    padding: 0;
  }
}

#server-dashboard-container {
  display: grid;
  max-width: 100vw;
  grid-template-columns: repeat(4, 1fr);
}
#server-dashboard-container .server-dashboard-widget {
  position: relative;
  margin: 10px;
  padding: 13px;
  border: 2px solid #404040;
  border-radius: 23px;
  background-color: #191919;
}
#server-dashboard-container .server-dashboard-widget h2 {
  font-size: 20px;
  font-stretch: 160%;
  margin: 0;
  color: #8C9099;
}
#server-dashboard-container .server-dashboard-widget h3 {
  font-size: 25px;
  font-stretch: 120%;
  margin: 0;
}
#server-dashboard-container .server-dashboard-widget h4 {
  font-stretch: 120%;
  margin: 0;
  color: #8C9099;
}
#server-dashboard-container .server-dashboard-widget.server-dashboard-widget-details {
  height: 97px;
  transition: font-size 0.5s, font-stretch 0.5s;
}
#server-dashboard-container .server-dashboard-widget.server-dashboard-widget-details h3, #server-dashboard-container .server-dashboard-widget.server-dashboard-widget-details h4 {
  transition: font-size 0.5s, font-stretch 0.5s;
}
#server-dashboard-container .server-dashboard-widget.server-dashboard-widget-details:hover h3 {
  font-size: 16px;
  transition: font-size 0.5s, font-stretch 0.5s;
}
#server-dashboard-container .server-dashboard-widget.server-dashboard-widget-details:hover h4 {
  font-size: 25px;
  font-stretch: 150%;
  transition: font-size 0.5s, font-stretch 0.5s;
}
#server-dashboard-container .server-dashboard-widget-small {
  grid-column: span 1;
}
@media (max-width: 1200px) {
  #server-dashboard-container .server-dashboard-widget-small {
    grid-column: span 2;
  }
}
#server-dashboard-container .widget-progressbar {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: grid;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #0E0E11;
}
#server-dashboard-container .widget-progressbar .widget-progressbar-filler {
  font-size: 24px;
  font-weight: 1000;
  font-stretch: 200%;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  padding: 2px 0 2px 10px;
  transition: width 0.5s;
  color: #0E0E11;
  background-color: #FFFFFF;
  grid-area: 1/1;
}
#server-dashboard-container .widget-progressbar .widget-progressbar-overlay {
  font-size: 24px;
  font-weight: 1000;
  font-stretch: 200%;
  z-index: 1;
  padding: 2px 0 2px 10px;
  white-space: nowrap;
  color: #FFFFFF;
  grid-area: 1/1;
}

.carousel-wrapper {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  justify-content: stretch;
  width: 100%;
  height: 196px;
}
.carousel-wrapper .carousel {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-direction: row;
  flex-grow: 1;
  min-width: 0;
  margin: 0 10px;
  padding-right: 20px;
  gap: 20px;
  scrollbar-color: #1A1A1E transparent;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-snap-type: x mandatory;
}
.carousel-wrapper .stack-carousel-card {
  overflow: hidden;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 315px;
  height: 180px;
  transition: width 0.5s;
  border: 2px solid #191919;
  border-radius: 23px;
  background-color: #0E0E0E;
  aspect-ratio: 7/4;
  scroll-snap-align: start;
}
.carousel-wrapper .stack-carousel-card:hover {
  width: 360px;
}
.carousel-wrapper .stack-carousel-card .stack-carousel-card-upper {
  position: relative;
  height: 50%;
}
.carousel-wrapper .stack-carousel-card .stack-carousel-card-upper .stack-carousel-card-upper-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-wrapper .stack-carousel-card .stack-carousel-card-upper .stack-carousel-card-upper-logo {
  position: absolute;
  top: 45px;
  left: 20px;
  height: 90px;
}
.carousel-wrapper .stack-carousel-card .stack-carousel-card-lower {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  justify-content: flex-end;
  height: 50%;
}
.carousel-wrapper .stack-carousel-card .stack-carousel-card-lower h1 {
  box-sizing: border-box;
  margin: 0;
  padding: 0 10px 10px 0;
}

#fof {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#fof h1 {
  font-size: 200px;
  font-stretch: 10%;
  margin: 0;
  text-align: center;
  color: #E1E4E8;
}
#fof h2 {
  font-stretch: 200%;
  color: #8C9099;
}

/*# sourceMappingURL=style.css.map */
