/* Date of creation: 16/09/2025 */
.cta-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  @media screen and (max-width: 768px) {
    gap: 10px;
  }
}

.cta-button {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Silka", sans-serif;
  font-weight: 400;
  width: fit-content;
  padding: 10px;
  transition: all 0.3s ease;
  &:hover {
    background: #000;
    color: #fff;
  }
}

body {
  &.home {
    .cta-button {
      border-color: white;
      color: white;
      &:hover {
        background: white;
        color: black;
      }
    }
  }
}

.about_wrapper {
  .media-container {
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;

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

    iframe {
      width: 100%;
      height: fit-content;
      max-height: 800px;
      aspect-ratio: 16/9;
      display: block;
    }
  }
}
