* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Boska';
  src: url('/Boska/Fonts/OTF/Boska-BoldItalic.otf');
}
@font-face {
  font-family: 'Clash';
  src: url('/ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Bold.otf');
}
body {
  font-family: 'Clash';
  color: white;
  background-color: black;
}
header {
  display: flex;
  justify-content: center;
  width: 100%;
}
nav {
  width: 70%;
  height: 5vh;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
}
#current {
  color: #e93d3d;
}
main {
  width: 100%;
  height: 85vh;
  padding: 2% 10% 2% 10%;
  font-size: clamp(1rem, 1vw + 0.5rem, 2rem);
  display: flex;
  justify-content: space-between;
}
.container__content {
  width: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container__content--title {
  display: flex;
  flex-direction: column;
}
.container__content--list {
  margin-bottom: 50px;
}
.container__content--list a {
  color: inherit;
  text-decoration: none;
}
.container__preview {
  width: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container__preview--frame {
  border: 2px white solid;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.container__preview--image {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.container__preview--subtitle a {
  color: inherit;
}
