/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

      * {
        margin: 0;
        padding: 0;
      }
    
      body {
        background-image: url('images/vs_placeholder_bg.png');
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        font-family: helvetica;
        color: white;
      }
    
      a:link {
        color: tomato;
      }
      
      a:hover {
        color: red;
      }
      
      a:visited {
        color: tomato;
      }
      
      a:active {
        color: white;
      }
    
      .header {
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        text-align: center;
      }
      
      .header-title {
        padding: 5px;
      }
      
      .header-link {
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 5px;
        display: inline-block;
        font-size: 150%;
      }
      
      .header-link a:link {
        text-decoration: none;
      }
      
      .header-link a:hover {
        text-decoration: underline;
      }
      
      .footer {
        background-color: rgba(0,0,0,0.9);
        color: white;
        text-align: center;
      }
      
      .footer-link {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 3px;
        display: inline-block;
      }
      
      .footer-link a:link {
        text-decoration: none;
      }
      
      .footer-link a:hover {
        text-decoration: underline;
      }
      
      .paragraph-link {
        display: inline-block;
      }
      
      .paragraph-link a:link {
        text-decoration: none;
      }
      
      .paragraph-link a:hover {
        text-decoration: underline;
      }
      
      .main {
        background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.9));
        width: 65%;
        padding-bottom: 5%;
        position: relative;
        margin: auto;
        text-shadow: 2px 1px 1px black;
      }
      
      .content {
        margin: 20px;
        padding: 20px;
        font-size: 120%;
      }
      
      .button-link {
        display: inline-block;
        margin: 20px;
        padding-right: 30%;
      }
      
      .button-link a:link, .button-link a:visited {
        background-color: rgba(0,0,0,0.5);
        padding: 5px;
        text-decoration: none;
        border-radius: 5px;
        color: black;
      }
      
      .button-link a:active, .button-link a:hover{
        color: white;
      }
      
      .link-button {
        margin: 10px;
        padding: 10px;
        display: inline-block;
      }
      
      .link-button a:link, .link-button a:visited {
        background-color: rgba(0,0,0,0.5);
        text-decoration: none;
        border-radius: 5px;
        padding: 10px;
      }
      
      .link-button a:active, .link-button a:hover{
        color: white;
      }
      
      .content-box-left {
        background-color: rgba(0,0,0,0.5);
        float: left;
        width: 40%;
        height: auto;
        margin-right: 20px;
        margin-left: 30px;
        padding: 20px;
        border-radius: 20px;
      }
      
      .content-box-right {
        background-color: rgba(0,0,0,0.5);
        float: right;
        width: 40%;
        height: auto;
        margin-left: 20px;
        margin-right: 30px;
        padding: 20px;
        border-radius: 20px;
      }
      
      .content-side-left {
        background-color: rgba(0,0,0,0.5);
        float: left;
        width: 10%;
        height: auto;
        margin-right: 20px;
        margin-left: 30px;
        padding: 20px;
        border-radius: 0px 0px 20px 20px;
      }
      
      .content-side-right {
        background-color: rgba(0,0,0,0.5);
        float: right;
        width: 10%;
        height: auto;
        margin-right: 30px;
        margin-left: 20px;
        padding: 20px;
        border-radius: 0px 0px 20px 20px;
      }
      
      .pixel-gif-left img {
        float: left;
        margin-left: 10px;
        max-width: 10%;
        min-width: 50px;
        height: auto;
      }
      
      .pixel-gif-right img {
        float: right;
        margin-right: 10px;
        max-width: 10%;
        min-width: 50px;
        height: auto;
      }
      
      .house {
        color: #799FF4;
        display: inline-block;
      }
      
      .comment {
        color: grey;
        display: inline-block;
        font-size: 90%;
      }
      
      .warning {
        color: red;
        display: inline-block;
        font-size: 90%;
      }
      
      .image-right img {
        float: right;
        margin-left: 10px;
        max-width: 20%;
        height: auto;
      }
      
      .image-left img {
        float: left;
        margin-right: 10px;
        max-width: 20%;
        min-width: 75px;
        height: auto;
      }
      
      .image-center img {
        margin: auto;
        display: block;
        max-width: 100%;
        min-width: 75px;
        box-shadow: 0 0 20px black;
      }
      
      .text-center {
        text-align: center;
        margin: auto;
        display: block;
      }
      
      .header1 {
        font-size: 125%;
        font-weight: bold;
      }
      
      .quote {
        margin-left: 10px;
        padding-left: 20px;
        border-left: 1px solid rgba(255,255,255,0.5);
      }
      
      .tilt-text {
        animation: tilt 1s infinite alternate;
        display: inline-block;
      }

      
      @keyframes tilt {
        from { transform: rotate(5deg); }
        to { transform: rotate(-5deg); }
      }
      
      @media only screen and (max-width: 929px) {
        .content-side-left {
          float: none;
          width: 65%;
          text-align: center;
          margin: auto;
        }
        
        .content-side-right {
          float: none;
          width: 65%;
          text-align: center;
          margin: auto;
        }
        
        .content-box-left {
          width: unset;
          margin-left: 0;
          float: none;
        }
        
        .content-box-right {
          width: unset;
          margin-left: 0;
          float: none;
        }
      }
      
      @media only screen and (max-width: 601px) {
        .main {
          width: 100%;
        }
        
        .content-side-left {
          width: 100%;
          border-radius: 0px;
          padding: 0px;
        }
        
        .content-side-right {
          width: 100%;
          border-radius: 0px;
          padding: 0px;
        }
      }
