@font-face {
  font-family: VCR;
  src: url("./VCR.woff");
}

body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "VCR";
  overflow: auto;
  margin: 0;
  padding: 0;
}

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

/* **************!!HOMEPAGE STYLING!!**************** */

/* KNTXT LETTES IN CORNER */
.kntt {
  font-size: 7.4em;
  margin: 0.3em;
  color: white;
  position: fixed;
  z-index: 1;
  font-family: "VCR";
  transition: 0.3s ease-out;
}

.kntt.k {
  top: 0;
  left: 0;
}

.kntt.n {
  top: 0;
  right: 0;
}

.kntt.t {
  bottom: 0;
  left: 0;
}

.kntt.tt {
  bottom: 0;
  right: 0;
}

/* END KNTXT LETTES IN CORNER */

/* VIDEOBACKGROUND  */
.video-background {
  position: fixed;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: -100;
}
.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  opacity: 0.26;
}
@media (min-aspect-ratio: 16/9) {
  .video-background iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-background iframe {
    width: 177.78vh;
  }
}
/* END VIDEOBACKGROUND  */

/* CONTENT (BUTTONS) */
.content-container {
  display: flex;
  margin-top: 2.4em;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 28em;
  min-width: 20em;
  transition: 0.3s ease-out;
  color: white;
}

header {
  display: flex;
  justify-content: center;
}
header img {
  max-width: 85%;
  margin-bottom: 2em;
  z-index: -1;
}

.navbuttons {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.linkbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5em;
  width: 20em;
  height: 6em;
  color: white;
  background-color: black;
  border: 0.1em solid #fff;
  font-size: 1em;
  text-align: center;
  font-family: "VCR";
  text-transform: uppercase;
}

.linkbtn:hover {
  transform: scale(1.1);
  transition: 0.2s cubic-bezier(1, -0.57, 0, 1.78);
  color: black;
  background-color: white;
}

/* SOCIAL MEDIA */
.social-media {
  padding: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: inherit;
}

.social-media a {
  display: flex;
  width: 1.1em;
  height: 1.1em;
  color: white;
  margin: 0 1em;
  text-decoration: none;
  text-align: center;
}

.social-media :hover {
  transform: scale(1.1);
  transition: 0.2s cubic-bezier(1, -0.57, 0, 1.78);
  transition: 0.3s;
}
/* END SOCIAL MEDIA */
/* END CONTENT (BUTTONS) */
/* **************!!END HOMEPAGE STYLING!!**************** */

/* **************!!GENERAL-INFO STYLING!!**************** */
.content-container h1 {
  font-size: 3em;
}

.generalInfo {
  text-align: center;
  width: 100%;
}

.generalInfo img {
  width: 100%;
}

.goBackBtn {
  width: 50%;
  margin: 0.5em;
  padding: 1.4em;
  color: white;
  background-color: black;
  border: 0.1em solid #fff;
  font-size: 1em;
  text-align: center;
  font-family: "VCR";
  text-transform: uppercase;
}

.goBackBtn:hover {
  transform: scale(1.1);
  transition: 0.2s cubic-bezier(1, -0.57, 0, 1.78);
  color: black;
  background-color: white;
}
/* **************!!END GENERAL-INFO STYLING!!**************** */

/* **************!!PRACTICAL-INFO STYLING!!**************** */

#text {
  font-size: 2em;
}

.practicalInfo {
  max-width: 40em;
  align-self: flex-start;
  text-transform: uppercase !important;
}

.practicalInfo article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.practicalInfo header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.practicalInfo h3 {
  padding: 0;
  margin: 0;
  text-decoration: underline;
}

.practicalInfo p {
  padding: 0;
  margin: 0;
  text-align: center;
}

.practicalInfo .goBackBtn {
  margin-bottom: 4em;
}

.practicalInfo summary {
  padding-bottom: 0.6em;
  text-decoration: underline;
  font-size: 1em;
}

.practicalInfo details {
  font-size: 1em;
  padding: 0.3em;
  margin: 0.3em;
}

.dividerLine {
  width: 100%;
  padding: 0;
  height: 0.1em;
  border-top: 1px solid;
  border-color: rgba(255, 255, 255, 1);
}

.practicalDetails .dividerLine {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}
/* **************!!END PRACTICAL-INFO STYLING!!**************** */

/* **************!!RESPONSIVE MEDIA QUERIES!!**************** */

@media all and (max-width: 1440px) {
  /* **!HOMEPAGE RESPONSIVE!** */
  .kntt {
    font-size: 5em;
    transition: 0.3s ease-out;
  }
  .content-container {
    max-width: 22em;
    min-width: 20em;
    transition: 0.3s ease-out;
  }

  header img {
    max-width: 90%;
  }

  .navbuttons {
    width: 90%;
    transition: 0.3s ease-out;
  }
  .content-container .linkbtn {
    height: 5.6em;
    transition: 0.3s ease-out;
  }
  /* **!PRACTICAL-INFO RESPONSIVE!** */
  .practicalInfo {
    max-width: 30em;
  }
}

@media all and (max-width: 460px) {
  /* **!HOMEPAGE RESPONSIVE!** */
  .kntt {
    font-size: 3em;
    opacity: 0.7;
  }
  .content-container {
    align-self: flex-start;
    max-width: 90vw;
    min-width: 0em;
  }
  .content-container header img {
    width: 80vw;
    margin-bottom: 1em;
  }

  .social-media {
    padding: 1em;
  }

  .social-media a {
    width: 1vw;
  }

  /* **!GENERAL-INFO RESPONSIVE!** */
  .content-container h1 {
    font-size: 3em;
    margin: 0;
    margin-top: 1em;
  }

  /* **!PRACTICAL-INFO RESPONSIVE!** */
  .practicalInfo {
    max-width: 90vw;
  }

  .practicalInfo h1 {
    font-size: 2em;
    margin-top: 0.3em;
    margin-bottom: 0.4em;
  }
}

**************!!END RESPONSIVE MEDIA QUERIES!!****************
