    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: 'Ubuntu Condensed', sans-serif;
    }

    body {
      background: url('images/bg5.jpg') center center / cover no-repeat fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .content {
      max-width: 90%;
    }

    .logo {
      max-width: 500px;        
      width: 80vw;            
      height: auto;
      margin-bottom: 30px;
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    }

    h1 {
      font-size: 3.5rem;
      margin-bottom: 15px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    }

    p {
      font-size: 1.4rem;
      max-width: 700px;
      margin: 0 auto;
      text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    }

    a:link, a:visited, a:active {
    text-decoration: none; outline:none; color:#ed1c24;	-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease;
    }
    a:hover {text-decoration: none; color:#c60a18; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; 
    }
    a img {border:none;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 2.5rem;
      }
      p {
        font-size: 1.2rem;
      }
      .logo {
        max-width: 350px;
        width: 85vw;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 2rem;
      }
      p {
        font-size: 1.1rem;
      }
    }