body {
    background-color:rgb(25, 25, 25);
    color: white;
    font-family: "Cascadia_Mono",Arial,sans-serif;
}

img{
    -webkit-user-drag: none;
    width: 100%;
    height: auto;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@font-face {
    font-family: "Cascadia_Mono";
    src: url("../fonts/cascadia-mono-latin-700-normal.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Courier_Prime";
    src: url("../fonts/courier-prime-latin-400-normal.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

.mainnav {
  background-color: #979797;
  overflow: hidden;
}

.mainnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.mainnav a:hover {
  background-color: #ddd;
  color: black;
}

.mainnav a.active {
  background-color: #e7a34a;
  color: white;
}

.mainnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .mainnav a:not(:first-child) {display: none;}
  .mainnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .mainnav.responsive {position: relative;}
  .mainnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .mainnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    padding: 14px 16px;
    font-size: 17px;
  }
}

.button_bar{
  display: flex;
  justify-content: center;
  flex-direction: row;
  row-gap: 20px;
  column-gap: 150px;
  font-family: inherit;
  text-align: center;
}
.button_bar a{
  font-family: inherit;
  text-decoration: none;
  color: ivory;
  background-color: black;
  border:5px solid cadetblue;
  padding: 5px;
}
.button_bar a:hover {
  background-color: ivory;
  color: black;
  border-color: cadetblue;
}


@media screen and (max-width: 600px) {
  .button_bar{
    flex-direction: column;
    align-items: center;
  }
  .button_bar a{
    width: 60%;
    
  }
}

.copynotice{
  position: fixed;
  bottom: 0px;
}


.main_layout{
  display: flex; 
  gap: 50px; 
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 100px;
  margin-bottom: 50px;
}

.VS{ 
  font-size: 500%;
}

@media screen and (max-width: 600px) {
  .main_layout{ 
    flex-direction: column;
    text-align: center;
    width: 80vw;
    margin: 0 auto;
    gap: 0px;   
  }
  
  .VS{ 
    font-size: 300%;
    gap: 0px;
    margin: 10px 0px;
  }
}

