<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;1,400&amp;display=swap");

:root {
  --light-black: #343434;
}

* {
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
}

body {
  color: var(--light-black);
}

img {
  width: 720px;
  height: 480px;
  object-fit: cover;
}

.main {
  width: 100dvw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}

.container {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info {
  width: 700px;
  margin-bottom: 20px;
}

/* Slideshow */

.mySlides {
  display: none;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* Next &amp; previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 800px) {
  img,
  iframe {
    width: 560px;
    height: 373px;
  }

  .info {
    width: 540px;
  }
}

@media only screen and (max-width: 600px) {
  img,
  iframe {
    width: 320px;
    height: 213px;
  }

  .info {
    width: 300px;
  }
}
</pre></body></html>