/** @format */
/** @format */
.main,
.top__secret__main {
  background: repeating-linear-gradient(45deg, #fff, #00ffff 2em, #fff 4em, #bbff99 3em, #131313 5em, #787e7e 6em, #fff 3em), repeating-linear-gradient(-45deg, #131313, #00ffff 2em, #131313 3em, #bbff99 4em, #fff 5em, #00ffff 6em, #fff 3em);
  background-blend-mode: multiply;
  background-size: auto;
}

.top__secret__main__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-column-align: center;
      justify-self: center;
  margin: 0 auto;
  height: 90vh;
  background-color: #131313;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.top__secret__main__content h1 {
  font-family: 'Rampart One', cursive;
  font-size: 4rem;
  background-color: #00ffff;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#00ffff), to(#bbff99));
  background-image: linear-gradient(to top, #00ffff 0%, #bbff99 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  padding: 5%;
  text-align: center;
  -webkit-animation: blinker 5s linear infinite;
          animation: blinker 5s linear infinite;
}

@-webkit-keyframes blinker {
  50% {
    opacity: 0.2;
  }
}

@keyframes blinker {
  50% {
    opacity: 0.2;
  }
}

.top__secret__main__content h2 {
  font-size: 1.2rem;
  background-color: #00ffff;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#804000), color-stop(50%, #ffcc66), to(#804000));
  background-image: linear-gradient(to top, #804000 0%, #ffcc66 50%, #804000 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  padding-right: 5%;
  text-align: center;
}

.top__secret__main__content p {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  padding: 2px;
  margin-bottom: 10%;
  text-align: center;
}

.top__secret__main__btn {
  font-size: 1rem;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#00ffff), to(#bbff99));
  background-image: linear-gradient(to top, #00ffff 0%, #bbff99 100%);
  padding: 2% 5%;
  margin: 1% 20% 1% 20%;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  outline: none;
}

.top__secret__main__btn a {
  position: relative;
  z-index: 2;
  color: #131313;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  font-family: 'Archivo Black', sans-serif;
}

.top__secret__main__btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  border-radius: 10px;
}

.top__secret__main__btn:hover {
  color: #fff;
}

.top__secret__main__btn:hover:after {
  width: 100%;
}

.top__secret__main__img--container {
  text-align: center;
}

#top__secret__main__img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  margin-bottom: 0 auto;
}

.top__secret__main__img--container:hover {
  background-color: transparent;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .top__secret__main__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-column-align: center;
        justify-self: center;
    width: 100%;
    margin: 0 auto;
    height: 90vh;
  }
  .top__secret__main__content {
    text-align: center;
    margin-bottom: 4rem;
  }
  .top__secret__main__content h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
    text-align: center;
  }
  .top__secret__main_content h2 {
    font-size: 3rem;
    text-align: center;
  }
  .top__secret__main__content p {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .top__secret__main__content h1 {
    font-size: 2rem;
    margin-top: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top__secret__main_content h2 {
    font-size: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top__secret__main__content p {
    margin-top: 2rem;
    font-size: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top__secret__main_btn {
    padding: 12px 12px;
    margin: 0 0;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .top__secret__main_img {
    -ms-flex-line-pack: center;
        align-content: center;
    margin: 0 0;
  }
}

html {
  scroll-behavior: smooth;
  font-family: Helvetica, sans-serif, Arial;
  background-color: #131313;
}

body,
html {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto;
  background-color: #131313;
}

body header a {
  color: #00ffff;
  text-decoration: none;
  padding: 15px;
  display: block;
  text-transform: uppercase;
}

body section#main__claudius__text {
  color: #00ffff;
  padding: 15px;
  text-align: center;
}

@media (min-width: 840px) {
  body section#main__claudius__text {
    grid-area: main__claudius__text;
    text-align: left;
    margin: 4em 0 0 4em;
  }
}

body section#main__claudius__text h1 {
  font-size: 3em;
  margin-top: 10px;
  text-transform: uppercase;
  color: #00ffff;
}

@media (min-width: 840px) {
  body section#main__claudius__text h1 {
    width: 30%;
    font-size: 4em;
    line-height: 0.9em;
  }
}

body section#main__claudius__text p {
  font-size: 1.4em;
  color: #ff99ff;
}

body section#main__claudius__text a {
  color: #ffcc66;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  text-align: center;
  margin: 50px auto 0 auto;
  padding: 15px;
}

@media (min-width: 840px) {
  body section#main__claudius__text a {
    display: inline-block;
    padding: 15px 60px;
  }
}

.claudius__is__waiting {
  background-color: #131313;
  position: relative;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.claudius__is__waiting:after, .claudius__is__waiting:before {
  content: ' ';
  width: 10px;
  height: 10px;
  position: absolute;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.claudius__is__waiting:after {
  top: -1px;
  left: -1px;
  border-top: 5px solid #bbff99;
  border-left: 5px solid #bbff99;
}

.claudius__is__waiting:before {
  bottom: -1px;
  right: -1px;
  border-bottom: 5px solid #00ffff;
  border-right: 5px solid #00ffff;
}

.claudius__is__waiting:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.claudius__is__waiting:hover:before, .claudius__is__waiting:hover:after {
  width: 100%;
  height: 100%;
}
