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

.plan{
    z-index: -1;
    position: fixed;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
.plan img{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
h4{
  padding: 0px;
  flex: 50%;
  color: red;
  font-family: 'DotGothic16', sans-serif;
  font-size: 5em;

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

  }
  .flex-item-center{
    flex: 50%;
    color: red;
    background-color: grey;
    opacity: 0.9;
  }

  h2{
    padding: 0px;
    flex: 50%;
    color: red;
    font-family: 'DotGothic16', sans-serif;
    font-size: 3rem;

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

  }
  @media (max-width: 892px) {
    body{
        width: 100vw;
        height: 100vh;
    
    }
    .flex-container {
      flex-direction: column;
    }

    .flex-item-left{
        color: #f1f1f1;
        opacity: 0.2;
        transition: opacity 0.25s;
        
    }
    .flex-item-left:hover{
      color: #f1f1f1;
      opacity: 1;
      
  }
    .flex-item-center{
        color: red;
        opacity: 0.2;
        transition: opacity 0.25s;
    
    }
    .flex-item-center:hover{
      color: red;
      opacity: 1;
  
  }
    .flex-item-right{
        color: #f1f1f1;
        opacity: 0.2;
        transition: opacity 0.25s;
    }
    .flex-item-right:hover{
      color: #f1f1f1;
      opacity: 1;
  }
    .plan{
       
        height: 100%;
        width: auto;
        object-fit: contain;
        top: 0;
        left: 0;
        position: fixed;

        z-index: -2;
        transform: rotate(-90deg);
    }
    .plan img{
      width:  auto;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      transform: translate(0,-40%);

  }
  }