@import url('https://fastly.jsdelivr.net/npm/galmuri@latest/dist/galmuri.css');

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: 'Galmuri9', sans-serif;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: 100px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  padding: 0 20px;
}

header h1 {
  margin-left: 10px;
}

header h1 img {
  border-radius: 20%;
  box-shadow: 0 0 15px rgba(140,202,248,1);
  border: #8CCAF8 solid 3px;
  position: relative;
  top: 5px;
}

header ul {
  display: flex;
}

header ul li {
  margin-right: 15px;
  transition: transform 0.5s ease-in-out;
}

header ul li button {
  background: transparent;
  border: none;
  font-size: 1rem;
}

header ul li:hover {
  transform: scale(1.1);
}

header ul li:active {
  transform: scale(1);
}

/* Section 1 (Video) */
section._1 {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: 100vh;
}

section._1 video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: brightness(1.25);
}

section._1 .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

section._1 .content h2 {
  text-align: center;
  font-size: 60px;
  letter-spacing: 4px;
  font-weight: bold;
  background: linear-gradient(#9694ff, #5a5bca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section 2 (Intro) */
section._2 {
  background: linear-gradient(to top, #010033, #000000);
  text-align: center;
  height: 300px;
  align-items: center;
}

section._2 h3 {
  color: #fff;
  padding: 112.5px;
}

/* Section 3 (Cards) */
section._3 {
  background-color: #010033;
}

.card {
  background-color: #e6e6e6;
  width: 300px;
  margin: auto;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 0 40px 0 #fff;
}

.card img {
  margin: 25px;
  border: 3px solid #000;
  margin-bottom: 10px;
}

.card h4 {
  padding-bottom: 15px;
}

._1_ { position: relative; left: 20%; }
._2_ { position: relative; right: 17%; }
._3_ { position: relative; left: 14%; }
._4_ { position: relative; right: 11%; }
._5_ { position: relative; left: 8%; }
._6_ { position: relative; right: 5%; margin-bottom: 0; }

.void {
  height: 15px;
}

/* Section 4 (Join) */
section._4 {
  background: linear-gradient(to bottom, #010033, #000000);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  min-height: 400px;
  box-sizing: border-box;
}

section._4 h3 {
  margin-bottom: 30px;
  font-size: 32px;
}

section._4 img {
  border-radius: 15px;
  margin-bottom: 30px;
  border: #010033 solid 3px;
}

section._4 a.discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  background-color: #5562EA;
  padding: .75em 1.25em;
  border-radius: .75em;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  height: auto;
}

section._4 a.discord img {
  width: 40px;
  position: relative;
  top: 15px;
}

/* Footer */
footer {
  background-color: #3d3d3d;
  height: 100px;
  text-align: center;
  box-shadow: 0 -5px 30px 0 #3d3d3d;
}

footer h5 {
  color: #797979;
  font-size: 16px;
  margin-left: 10px;
}

footer p {
  font-size: 12px;
  margin-top: 15px;
}

footer a {
  color: #000;
}

.title {
  font-size: 32px;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

/* Responsive - Tablet */
@media screen and (max-width: 1024px) {
  ._1_, ._2_, ._3_, ._4_, ._5_, ._6_ {
    left: 0 !important;
    right: 0 !important;
    position: static !important;
    margin: 0 auto 40px auto;
  }

  .card {
    width: 80%;
    max-width: 300px;
  }
}

/* Responsive - Mobile */
@media screen and (max-width: 600px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  header ul {
    flex-direction: column;
    align-items: center;
  }

  header ul li {
    margin: 10px 0;
  }

  section._2 h3 {
    padding: 2rem 1rem;
    font-size: 1.1rem;
  }

  .card {
    width: 95%;
  }

  section._4 a.discord {
    font-size: 16px;
    padding: 0.6em 1em;
  }

  section._1 .content h2 {
    font-size: 38px;
  }
}
