* {
  box-sizing: border-box;
  font-family: "Prompt", sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: #ffffff;
  background-color: #2c2c2c;
}
.body-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.links {
  display: flex;
  color: white;
  justify-content: center;
  margin-bottom: 20px;
}

.links a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.links a:hover {
  background-color: #333;
  color: #fff;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.9rem;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  animation: pulse 2s infinite;
}

.button:hover {
  background-color: #555;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}
header {
  width: 95%;
  min-height: 100vh;
  position: relative;

  .container {
    margin: 0 auto;
    padding: 1rem 2rem;

    .showcase {
      min-height: 10vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      margin: 0 auto;
      main {
        h1 {
          color: #c08497;
          font-size: 2.5rem;
          margin-bottom: 0;
          font-weight: 700;
          margin-bottom: 1rem;
        }
        h2 {
          color: #ffcad4;
        }
      }

      .sidebar1 {
        h2 {
          color: #ffcad4;
          font-size: 1.5rem;
          margin-bottom: 0;
          font-weight: 700;
          margin-bottom: 1rem;
        }
      }
      .sidebar4 {
        h2 {
          color: bisque;
          font-size: 1.5rem;
          margin-bottom: 0;
          font-weight: 700;
          margin-bottom: 1rem;
        }
        li {
          text-decoration: underline;
          color: #f0a4a7;
        }
      }
      .sidebar6 {
        h2 {
          color: bisque;
          font-size: 2rem;
          margin-bottom: 0;
          font-weight: 700;
          margin-bottom: 1rem;
        }
        li {
          color: beige;
        }
      }
      .sidebar7 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
        h3 {
          font-size: 1.8 rem;
        }
      }
    }
  }
}

.video-container {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;

  video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(50, 50, 50, 0.9);
  }
}

.grid {
  margin: 0 auto;
  padding: 0;
  justify-content: center;
  align-items: center;
}
