* {
  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 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 95vh;
}
.container__content {
  background-color: none;
  font-size: 2rem;
  width: 40vw;
}
.container__content p {
  margin-top: 50px;
  font-family: 'Arial';
  font-size: 1rem;
}
.container__content a {
  text-decoration: none;
  color: inherit;
}
.row {
  width: 259px;
  padding-left: 5px;
}
.blue {
  background-color: #3d71e9;
}
.red {
  background-color: #e93d3d;
}
.green {
  background-color: #6be93d;
}
