:root {
  --mainBlack: #0f0f11;
}

@font-face {
  font-family: MFEK;
  src: url("../assets/fonts/MFEKSans-750-Bold.ttf");
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--mainBlack);
  font-size: 1.6rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1020px;
}

.main-section {
  margin: auto;
  padding: 1rem;
  width: 95%;
  max-width: 1500px;
  height: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/imgs/bg.png");
  transform: translate(-50%, -50%);
  border-radius: 5px;
  transition: box-shadow .5s ease-in-out;
}

.shadow {
  box-shadow: 0px 0px 20px 10px rgba(199, 159, 255, 0.233);
}

.main-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.title {
  font-size: 8rem;
  font-family: MFEK, 'Franklin Gothic Medium',
    'Arial Narrow',
    Arial,
    sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: white;
  text-shadow: 2px 4px 0px #000;
  transition: transform .3s ease-in-out;
}

@media (min-width: 768px) {
  .title {
    font-size: 15.6rem;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 24rem;
  }
}

.scale {
  transform: scale(1.05);
}

.btn {
  padding: 1rem 3rem;
  text-decoration: none;
  position: relative;
  color: white;
  font-weight: 700;
  font-size: 2rem;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid transparent;
  transition: color .2s ease-in-out, transform .3s ease-in-out;
}

.btn:hover {
  color: var(--mainBlack);
  transform: scale(1.1);
}

.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--mainBlack);
  border-radius: 2rem;
  transform: translate(-50%, -50%);
  z-index: -5;
  transition: left .25s ease-in-out;
}

.btn:hover::before {
  left: 200%;
}

.btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -200%;
  background: #fff;
  border-radius: 2rem;
  transform: translate(-50%, -50%);
  z-index: -10;
  transition: left .2s ease-in-out;
}

.btn:hover::after {
  left: 50%;
}