@charset "UTF-8";
body{
    background-color: black;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    
}

.skate{
    z-index: -1;
    position: fixed;
    width: 100vw;
    height: 100vh;
}
.skate img{
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    transform: translate(-50%,-50%);
    transform: rotate(90deg);
    top: 50%;
    left: 50%;

}
h1{
  padding: 0px;
  flex: 50%;
  color: #f1f1f1;
  font-family: 'DotGothic16', sans-serif;
  font-size: 5em;

}
p1{
  padding: 0px;
  flex: 50%;
  color:#f1f1f1;
  font-family: 'space mono', sans-serif;
  font-size: 3rem;
}
.flex-container {
    z-index: +1;
    display: flex;
    flex-direction: row;
    font-size: 2em;
    font-family: 'Space Mono', sans-serif;
    background-color: grey;
    opacity: 0.7;
    text-align: left;
  }
  .flex-item-left {
    padding: 0px;
    flex: 50%;
    color: red;
  }
  h2{
    padding: 0px;
    flex: 50%;
    color: red;
    font-family: 'DotGothic16', sans-serif;
    font-size: 3rem;

  }
  .flex-item-center {
    padding: 0px;
    flex: 50%;
    color: #f1f1f1;
  }
  h3{
    padding: 0px;
    flex: 50%;
    color: #f1f1f1;
    font-family: 'DotGothic16', sans-serif;
    font-size: 3rem;

  }
  .flex-item-right {
    padding: 0px;
    flex: 50%;
    color: red;
  }
  h4{
    padding: 0px;
    flex: 50%;
    color: red;
    font-family: 'DotGothic16', sans-serif;
    font-size: 3rem;

  }
  .flex-item-ultraright {
    padding: 0px;
    flex: 50%;
    color:#f1f1f1
  }
  h5{
    padding: 0px;
    flex: 50%;
    color: #f1f1f1;
    font-family: 'DotGothic16', sans-serif;
    font-size: 3rem;

  }
  #text{
    padding: 0px;
    flex: 50%;
    color: #f1f1f1;
    font-family: 'DotGothic16', sans-serif;
    font-size: 3rem;
    text-align: right;
  }

  @media (max-width: 892px) {
    body{
        width: 100vw;
        height: 100vh;
    }
    h1{
      padding: 0px;
      flex: 50%;
      color: #f1f1f1;
      font-family: 'DotGothic16', sans-serif;
      font-size: 5em;
      text-transform: uppercase;
    
    }
    p1{
      padding: 0px;
      flex: 50%;
      color:#f1f1f1;
      font-family: 'space mono', sans-serif;
      font-size: 3em;
    }
    .flex-container {
      flex-direction: column;
      background-color: transparent;
      
    }
    .flex-item-left{
        color: red;
        opacity: 0.3;
        transition: opacity 0.25s;
    }
    .flex-item-left:hover{
      color: red;
      opacity: 1;
  }
    .flex-item-center{
        color: #f1f1f1;
        opacity: 0.3;
        transition: opacity 0.25s;
    }
    .flex-item-center:hover{
      color: #f1f1f1;
      opacity: 1;
  }
    .flex-item-right{
        color: rgb(255, 0, 0);
        opacity: 0.3;
        transition: opacity 0.25s;
    }
    .flex-item-right:hover{
      color: red;
      opacity: 1;
  }
    .flex-item-ultraright{
      color: #f1f1f1;
      opacity: 0.3;
        transition: opacity 0.25s;
  }
  .flex-item-ultraright:hover{
    color:#f1f1f1;
    opacity: 1;
}
    .skate{
        transform: translate(-50%,-50%);
        height: 100vh;
        width: 100vw;
        object-fit: contain;
        top: 0;
        left: 10;
        position: fixed;

        z-index: -2;
        transform: rotate(-90deg);
    }
  }