@font-face {
font-family:"Press Start 2"; 
src: url(/fonts/press-start-2.ttf);
}
@font-face {
font-family:"Cooper"; 
src: url(/cooper.ttf);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

p {
  margin-bottom: 12px
}


h1,h2,h3,h4,h5,h6{
  font-family: "Press Start 2";
  color: red;
  letter-spacing: -3px
}

a.button {
  display: inline-block;
  border: 2px solid white;
  margin-top: 2px;
  margin-bottom: 4px;
  color: white;
  background-color: black;
  font-family: "Press Start 2";
  padding: 6px 12px;
  text-decoration: none;
  transition: all 0.2s;
  vertical-align: middle
}

a.button:hover {
  border-bottom-color: currentColor;
}

a {
  color: cyan;
}

a:hover{
  color: blue;
}

.wrap {
  margin: 12px auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  overflow: auto;
  justify-content: center;
  gap: 12px;
}

.main {
  width: 500px;
  background-color: black;
  border: 3px double white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  letter-spacing: -1px;
  line-height: 1.6;
}

.left {
  width: 225px;
  background-color: black;
  border: 3px double white;
  letter-spacing: -1px;
  padding: 5px;
  padding-top: 20px;
  line-height: 1.6;
}

.right {
  width: 225px;
  background-color: black;
  border: 3px double white;
  padding: 5px;
  padding-top: 20px;
  letter-spacing: -1px;
  line-height: 1.6;
}

.header {
  line-height: 1.6;
  width: 100%;
  margin: 2px auto;
  background-color: black;
  border: 2px solid white;
  padding: 10px 20px;
  text-align: center;
}

.title-block {
  width: 55%;
  background-color: black;
  border: 3px double white;
  margin-top:20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.middler {
  line-height: 1.6;
  width: 100%;
  background-color: black;
  border: 2px solid white;
  padding: 10px 20px;
  text-align: center;
  margin: 2px auto;
}

.tailer {
  line-height: 1.6;
  width: 100%;
  margin: 2px auto;
  background-color: black;
  border: 2px solid white;
  padding: 3px auto;
  text-align: center;
}

.tnr {
  line-height: 1.6;
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  margin: 2px auto;
  letter-spacing: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
}

body {
  background-color: black;
  color: white;
  font-family: "Press Start 2";
  text-align: center;
}

hr {
  border:none;
  height: 0;
  border-top: 2px solid white;
  background-color: white;
  margin: 20px 0;
}

body > * {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 700px) {
  .wrap {
    flex-direction: column;
    width: 100%;
  }
  
  .main {
    width: 100%;
    margin-bottom: 12px;
  }
  
  .header {
    order: 1
  }
  
  .content {
    order: 2
  }
  
  .tailer {
    order: 3
  }
    
  .left {
    order: 2;
    margin: 12px auto;
    width: 100%;
  }

  .content {
    order: 1;
    width: 100%;
    margin: 12px auto;
  }
  
  .right {
    order: 3;
    margin: 12px auto;
    width: 100%;
  }
  
  body {
    line-height: 1.6;
    height: 100%;
    width: 100%;
    background-size: auto, 50px 50px;
    letter-spacing: -5px
  }
}