:root {
  --body-bg-image: url('/media/theme/capitol.png');
}

@font-face {
  font-family: "DOS-V";
  src: url('/media/fonts/DOS-V_re_ANK24.woff');
}

body {
  font-family: "DOS-V";
  font-size: 16px;
  color: #2c283f;
  background-image: var(--body-bg-image);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  cursor: url(/media/theme/cursors/cursor.png), default !important;
}

h1 {
  color: #d82e65;
  font-size: 20px;
}

h2 {
  color: #d82e65;
  font-size: 20px;
}

a {
  color: #2c283f;
}

.main,
.main-first {
  border-radius: 2.5px;
  margin-top: 20px;
  margin-left: 475px;
  max-width: calc(100vw - 1000px);
  width: auto;
  border: 2px solid #d82e65;
  background: #eff7f6;
  padding: 15px 25px 5px 25px;
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .main,
  .main-first {
    width: calc(100vw - 650px);
    max-width: none;
  }
}

.main-first {
  margin-top: 60px;
}

.slideshow-counter {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.img-slide {
  display: none;
  width: 100%;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  color: #2c283f;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 2.5px;
  user-select: none;
  z-index: 5;
}

.prev {
  left: 10;
  cursor: url(/media/theme/cursors/pointer.png), default;
}

.next {
  right: 10;
  cursor: url(/media/theme/cursors/pointer.png), default;
}

.sidebar {
  font-size: 15px;
  border-radius: 2.5px;
  position: fixed;
  top: 60px;
  left: 16px;
  width: 440px;
  min-height: 75px;
  border: 2px solid #d82e65;
  background: #eff7f6;
}

.row {
  display: flex;
  column-gap: 5%;
}

.column {
  flex: 50%;
}

/* prevent image overflow */
.main img,
.main-first img,
.sidebar img {
  max-width: 100%;
  height: auto;
}

.sidebar-pic img {
  vertical-align: middle;
  width: 200px;
  height: auto;
}

.sidebar-description {
  padding: 15px;
}

.sidebar-links {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  background: #d82e65;
  padding-top: 5px;
  color: #fffff5;
  width: 100%;
  height: 30px;
}

.button {
  padding: 5px;
  padding-left: 10px;
  display: inline-block;
}

.link {
  color: #d82e65;
  text-decoration: none;
}

.link:hover {
  color: #1cd1c8;
  cursor: url(/img/cursors/pointer.png), default;
}

.sidebar-links a {
  color: #eff7f6;
  text-decoration: none;
}

.sidebar-links a:hover {
  color: #1cd1c8;
  cursor: url(/img/cursors/pointer.png), default;
}

.cyan-highlight {
  color: #1cd1c8;
}

.pink-highlight {
  color: #d82e65;
}

.footer {
  color: #eff7f6;
  text-align: right;
  margin-left: 365px;
  max-width: 500px;
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  0% {
    opacity: 4;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .sidebar {
    position: static;
    width: 90%;
    margin: 60px auto 15px auto;
  }

  .main,
  .main-first {
    margin: 20px auto 0 auto;
    width: 90%;
    max-width: none;
  }

  .footer {
    width: 90%;
    margin: 20px auto 40px auto;
  }
}

@media (orientation: portrait) {
  .sidebar {
    position: static;
    width: 90%;
    margin: 60px auto 15px auto;
  }

  .main,
  .main-first {
    margin: 20px auto 0 auto;
    width: 90%;
    max-width: none;
  }

  .footer {
    width: 90%;
    padding: 5%;
    margin: 0 auto;
  }

  .top-bar {
    font-size: 13.5px;
    letter-spacing: 4px;
    font-size: 90%;
  }
}
