@import url("https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Jua&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  background-color: rgb(206, 135, 42);
}

header {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 4vh 5vw;
}
header h1 a {
  color: #181818;
  font-size: 50px;
  font-family: "Bungee Shade", cursive;
}
header #gnb {
  display: flex;
}
header #gnb li {
  margin: 0px 20px;
}
header #gnb li a {
  font: 16px/1 "Jua";
  color: #181818;
  letter-spacing: 1px;
}
header .sns {
  display: flex;
}
header .sns li {
  margin: 0px 10px;
}
header .sns li a {
  font-size: 20px;
  color: #181818;
}
header .btn_menu {
  display: none;
}

figure {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
figure .text {
  position: absolute;
  left: 16vw;
  top: 50%;
  transform: translateY(-50%);
}
figure .text .team-name {
  font-family: "Bungee Shade", cursive;
}
figure .text p {
  font: normal 8vw/1 "Jua";
  color: #181818;
  text-align: center;
}
figure .text ul {
  display: flex;
  margin-top: 50px;
  justify-content: center;
}
figure .text ul li {
  margin: 0px 30px;
}
figure .text ul li i {
  font-size: 20px;
  color: #181818;
  margin-right: 10px;
}
figure .text ul li strong {
  font: 20px/1 "Jua";
  color: #181818;
  letter-spacing: 1px;
}

footer {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 3vw;
  bottom: 0;
  font: 13px/1 "Jua";
  color: #181818;
  letter-spacing: 1px;
  padding: 2vh 0;
}

#snb {
  display: none;
}

@media screen and (max-width: 968px) {
  header #snb {
    display: block;
  }
  header #snb .sub-menu {
    position: absolute;
    right: 5vw;
    padding: 10px 15px;
    border: 3px solid #c79111;
    border-radius: 10px;
    text-align: center;
    background-color: inherit;
    transition: 0.4s;
  }
  header #snb .sub-menu li {
    padding: 10px 0px;
    font: 16px/1 "Jua";
  }
  header #snb .sub-menu li a {
    color: #181818;
    background-color: #c79111;
    border-radius: 5px;
  }
  header #snb .sub-menu li a i {
    text-align: center;
  }
  header #snb .sub-menu.hide {
    opacity: 0;
  }
  header #gnb {
    display: none;
  }
  header .sns {
    display: none;
  }
  header .btn_menu {
    display: block;
    font-size: 4vw;
    color: #181818;
  }
  figure .text p {
    font-size: 20vw;
  }
}/*# sourceMappingURL=style.css.map */