@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap");
body, * {
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  outline: none;
}

body {
  font-size: clamp(12px, 1vw, 16px);
  font-family: "Poppins", sans-serif;
}

h1, h2 {
  color: white;
}

p {
  color: #e6e6e6;
  font-size: 1.2em;
}

#line {
  background: #aaaaaa;
  height: 1px;
  width: 100%;
  margin: 1rem 0;
  grid-area: line;
}

#separator {
  margin: 10px;
}

.buttons {
  gap: 2%;
  display: flex;
  align-items: center;
}

.invite-btn {
  background: #005ed8;
  color: white;
  padding: 0.8em 3rem;
  font-size: 1em;
  font-family: inherit;
  text-align: center;
  line-height: 0.8em;
  border-radius: 0.3em;
  box-shadow: 0 0 30px #005ed8;
  transition: all 0.3s ease-in-out;
}
.invite-btn:hover {
  background: #0084ff;
  box-shadow: 0 0 20px #0084ff;
  cursor: pointer;
  transform: translate(0px, -0.8rem);
}

.support-btn {
  background: transparent;
  color: white;
  padding: 0.8em 1rem;
  border: 2px solid #005ed8;
  font-size: 1em;
  font-family: inherit;
  text-align: center;
  line-height: 0.8em;
  border-radius: 0.3em;
  box-shadow: 0 0 30px #005ed8;
  transition: all 0.3s ease-in-out;
}
.support-btn:hover {
  border: 2px solid #0084ff;
  background: #0084ff;
  box-shadow: 0 0 20px #0084ff;
  cursor: pointer;
  transform: translate(0px, -0.8rem);
}

.nav {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  padding: 30px;
}
.nav a {
  margin: 2vw;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.2em;
  transition: 0.1s ease;
}
.nav a:hover {
  color: #fff;
}

.spike1 {
  position: absolute;
  padding: 40px 0px;
  transition: 0.5s ease;
  right: 5vw;
  top: 8vh;
}
.spike1:hover {
  transform: translate(-30%, 20%);
}
.spike1:hover > * {
  background: #00aeff;
}
.spike1 > * {
  transition: 0.1s ease;
  background: #0084ff;
  width: 10vw;
  height: 2px;
  transform: rotate(-20deg);
}

.spike2 {
  position: absolute;
  padding: 40px 0px;
  transition: 0.5s ease;
  left: -5vw;
  top: 40vh;
}
.spike2:hover {
  transform: translate(30%, -20%);
}
.spike2:hover > * {
  background: #00aeff;
}
.spike2 > * {
  transition: 0.1s ease;
  background: #0084ff;
  width: 10vw;
  height: 2px;
  transform: rotate(-20deg);
}

.spike3 {
  position: absolute;
  padding: 40px 0px;
  transition: 0.5s ease;
  right: 5vw;
  top: 60vh;
}
.spike3:hover {
  transform: translate(-30%, -20%);
}
.spike3:hover > * {
  background: #00aeff;
}
.spike3 > * {
  transition: 0.1s ease;
  background: #0084ff;
  width: 10vw;
  height: 2px;
  transform: rotate(20deg);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #080808;
  min-width: 100%;
}

main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(10, 0.1fr);
  grid-row-gap: 1.2rem;
  grid-column-gap: 2rem;
  grid-template-areas: "head_text head_text . ." ". . . ." "logo desc desc desc" "logo buttons buttons buttons" ". . . ." ". features features features" ". line line line" ". . source ." "updates updates servers servers" "updates updates servers servers";
}

h1 {
  grid-area: head_text;
  justify-self: center;
  font-size: 2em;
}

.logo {
  grid-area: logo;
  justify-self: flex-end;
  align-self: center;
  width: 12em;
}

.description {
  grid-area: desc;
  padding: 0px 10px;
}
.description > h2 {
  font-size: 2.5em;
}

.buttons {
  grid-area: buttons;
  width: 100%;
}

.features {
  grid-area: features;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.source {
  grid-area: source;
  display: flex;
  gap: 1rem;
}
.source > img {
  transition: 0.4s ease-in-out;
  width: 2rem;
}
.source > p {
  transition: 0.4s ease-in-out;
  margin: auto 0;
}
.source:hover > img {
  transform: rotate(-360deg);
}
.source:hover > p {
  transform: translate(10px);
}

.updates {
  grid-area: updates;
  justify-self: center;
  align-self: center;
  width: 100%;
  cursor: default;
}
.updates > h2, .updates .items > .slide {
  margin-left: 5vw;
  margin-bottom: 20px;
}
.updates > .items {
  height: 25vh;
  overflow-y: hidden;
}
.updates > .items > .update {
  margin-left: 8vw;
}
.updates > .items > .update > h3 {
  margin-top: 1.2em;
  padding: 0px 10px;
  color: #0084ff;
}
.updates > .items > .update > .pointer {
  position: absolute;
  margin-left: -3vw;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 1rem solid #005ed8;
}
.updates > .items > .slide {
  background: #0084ff;
  width: 2px;
  height: 25%;
  position: absolute;
}
.updates > .items > .update > * {
  transition: 0.3s ease;
}
.updates > .items > .update:hover > .pointer {
  border-left: 1rem solid #00aeff;
}
.updates > .items > .update:hover > h3 {
  color: #00aeff;
}

.servers {
  grid-area: servers;
  justify-self: flex-end;
  width: 50%;
}

@media only screen and (max-width: 1000px) {
  .logo {
    align-self: flex-start;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 700px) {
  h1, .description {
    justify-self: center;
    grid-column: 1/6;
    text-align: center;
  }

  .logo {
    justify-self: flex-end;
    margin: 0;
    grid-row: 2;
    grid-column: 3;
  }

  .buttons {
    grid-column: 2/5;
    justify-content: center;
  }

  .servers {
    grid-column: 1/6;
    justify-self: center;
    margin-left: 30px;
  }

  .updates {
    grid-row: 15/20;
    grid-column: 1/6;
    justify-self: center;
  }
}

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