.presentation-container{
  min-height: 100vh;
}

.presentation-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) brightness(30%);
}

.presentation-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  min-height: 100vh;
  max-width: 140rem;
  margin: 0 auto;
  padding: 10rem 3rem;
  overflow: hidden;
}

.presentation-text-content{
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 20px;

  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  p{
    color: var(--white-color);
    font-size: 1.5rem;
    padding-bottom: 0.7rem;
  }

  > span{
    font-size: 1.5rem;
    padding-bottom: 1rem;
    cursor: pointer;
  }
}

.presentation-image-content {
  display: flex;
  flex-direction: row;
}

.presentation-image{
  max-width: 100%;
  height: 80vh;
  position: absolute;
  bottom: 0;
  left: 0;
  filter: drop-shadow(0px 0px 50px var(--primary-color));
}

.presentation-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  padding: 2rem 4rem;
  color: var(--light-black-color);
  border: 0;
  border-radius: 20px;
  font-size: 2.4rem;
  cursor: pointer;
  animation: pulse 3s infinite;
  transition: filter .5s;
  width: 500px;
  margin: 60px 0 0 0;
  box-shadow: var(--primary-color) 0 0 20px;
}

.presentation-button:hover {
  filter: brightness(0.7);
}

.presentation-button img {
  width: 50px;
}

@media (max-width: 800px) {
  .presentation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 1rem;
  }

  .presentation-text-content {
    order: 2;
    justify-content: flex-end;
    padding: 10px 30px;
    height: fit-content;
    margin-top: 230px;

    p{
      font-size: 1.3rem;
    }

    span{
      font-size: 1.3rem;
    }
  }

  .presentation-title{
    font-size: 3rem;
  }

  .presentation-image {
    order: 1
  }

  .presentation-button {
    padding: 1rem 2rem;
    border-radius: 20px;
    font-size: 2rem;
    width: 95%;
    margin-left: 0;
    z-index: 1;
    margin-top: 30px;

    span{
      font-size: 1.5rem;
    }
  }

  .presentation-image{
    height: unset;
    bottom: unset;
    top: 30px;
    filter: drop-shadow(0px -10px 5px var(--primary-color));
  }
}
