.main-content {
  padding: 0;
  margin: 0;
}

.logo-img-header {
  max-height: 8em;
  max-width: 8em;
}

.header-div {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.header-text {
  padding-top: 1.3125em;
  padding-bottom: 1.3125em;
}

.description-div {
  padding: 5em;
}

.description-text h2 {
  font-weight: normal;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.description-text h3 {
  font-weight: normal;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .description-div {
    padding: 2em 1.5em;
  }
  
  .description-text h3 {
    font-size: 1.25em;
  }
}

.grid-div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid-div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

a {
  color: var(--text-color);
  text-decoration: none;
}

a:hover {
  text-decoration: none; 
  cursor: pointer;  
}

.page {
  padding: 1rem;
  text-align: center;
  display: block;
  background-color: var(--background-color);
  border-radius: 0.5em;
  margin: 0.25rem 0;
  width: 100%;
  box-shadow: 0 0.25em 0.375em rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.page i {
    font-size: 2rem;
}

@media (min-width: 768px) {
  .page {
    display: flex;
    padding: 2rem;
    align-items: flex-start;
    margin: 0.25rem auto;
    max-width: 50vw;
  }
  
  .page i {
    font-size: 5rem;
  }
}

.page h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.page h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.page:hover {
  transform: translateY(-0.3125em);
  background-color: var(--background-color);
}

.page p {
  font-size: 1.25rem;
  color: var(--text-color);
}

.page-text {
  flex-grow: 1;
}

.slideshow-container {
  position: relative;
  width: 80vw;
  max-width: 774px;
  height: calc(80vw / 1920 * 878 + 6px);
  max-height: calc(768px / 1920 * 878 + 6px);
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 3em;
}

.mobile {
  height: 80vh;
  max-height: 646px;
  width: calc(80vh / 915 * 412 + 6px);
  max-width: calc(640px / 915 * 412 + 6px);
}

.slides {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 10px;
  border-color: var(--text-color);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-in-out;
  border: 3px solid;
  border-color: var(--text-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.slide.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  
  .section-1 {
    max-width: ;
  }
}

@media (min-width: 768px) {
  .mobile {
    display: none;
  }
  
  .page-text {
    padding-left: 0.5rem;
  }
}
 
.how-to-buffer {
  padding-top: 0.25rem;
}

footer {
  padding-left: 1rem;
  padding-bottom: 1rem;
}