* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    font-family: "Heebo", sans-serif;
    font-weight: 400;
  
    --black: #ede9e9;
    --dark: #ede9e9;
    --white: #ede9e9;
  }
  
  .container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
  }
  
  .dark-layer {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    z-index: 3;
    background-color: var(--dark);
    mask-image: radial-gradient(600px 900px at 50% 50%, transparent, #000 36%);
    position: relative;
    transform-origin: top center;
    animation: move-spot 4s infinite ease-in-out;
  }
  @keyframes move-spot {
    0%,
    100% {
      transform: rotate(-15deg);
    }
    50% {
      transform: rotate(15deg);
    }
  }
  
  @media screen and (max-width: 430px) {
      @keyframes move-spot {
          0%,
          100% {
              transform: rotate(-11deg);
          }
          50% {
              transform: rotate(11deg);
          }
      }
  }
  
  .text-big {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    clip-path: circle(400px at 50% 50%);
    background-color: var(--black);
    display: grid;
    place-items: center;
  }
  .text-big h1 {
    font-size: 12em;
    font-weight: 800;
    color: var(--black);
    text-shadow: -20px 20px 30px #000000a9;
    line-height: 1em;
    animation: move-shadow 4s infinite ease-in-out;
  }
  @keyframes move-shadow {
    0%,
    100% {
      text-shadow: 20px 20px 30px #000000a9;
    }
    50% {
      text-shadow: -20px 20px 30px #000000a9;
    }
  }
  
  .info {
    color: var(--white);
    width: 100%;
    text-align: center;
    align-self: center;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }
  .info h2 {
    font-weight: normal;
    color: #000000a9;
  }
  .info p {
    font-size: 0.8em;
    margin: 20px 0;
    color: #000000a9;
    line-height: 24px;
  }
  .info button {
    font-size: 0.8em;
    cursor: pointer;
    text-transform: uppercase;
    padding: 20px 50px;
    background-color: transparent;
    border: none;
    box-shadow: 0px 0px 5px gray;
    border-radius: 5px;
    letter-spacing: 2px;
    color: #000000a9;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.5s;
  }
  
  .info button:hover{
  
    background-color: #1c1b1b;
    box-shadow : none;
    color: #fff;
  
  }