.presentation {
  display: flex;
  flex-direction: column;
}

.presentation h1 {
  margin: 0 0 10px 0 !important;
  font-size: 260%;
}

.presentation p {
  font-size: 100%;
  font-weight: 400;
  width: 60%;
  margin-bottom: 40px;
}

.presentation h3 {
  margin-bottom: 10px;
  font-size: 140%;
}

.pr-footer {
  display: flex;
  flex-direction:  column;
  gap: 40px;
}

.pr-footer-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pr-footer-content:nth-child(3) {
  margin-top: 5px;
}

.pr-footer-content img {
  filter: var(--svg-filter);
  width: 27px;
}


@media only screen and (max-width: 1350px) { 
  .presentation p {
    width: 80%;
  }
}

@media only screen and (max-width: 950px) { 
  .presentation h1 {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 770px) { 
  .presentation h1 {
    font-size: 220%;
  }

  .presentation p {
    font-size: 110%;
    width: 90%;
  }
}

@media only screen and (max-width: 565px) { 
  .presentation p {
    width: 100%;
  }
}

/* Footer margin for mobile screens */
@media only screen and (max-height: 880px) {
  .pr-footer {
    margin-bottom: 40px;
  }
}