/* CSS */

* {
    font-family: 'Montserrat', sans-serif;
  }
  
  body {
    background-image: url("bg-pattern.png");
    background-size: cover;
    background-position: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
  }
  
  .logo {
    margin-bottom: 50px;
  }
  
  .logo img {
    width: 200px;
    opacity: 0;
    animation: fade-in 1s ease-in;
    animation-fill-mode: forwards;
  }
  
  .content h1 {
    font-size: 3em;
    color: #3C3C3C;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 1.5em;
    color: #3C3C3C;
    line-height: 1.5;
  }
  
  .content h3{
    font-size: 2em;
    color: #6B6B6B;
    margin-bottom: 20px;
  }
  
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Media Queries */
  
  @media only screen and (max-width: 600px) {
    .container {
      padding: 20px;
    }
    .logo img {
      width: 150px;
    }
    .content h1 {
      font-size: 2em;
    }
    .content h3 {
      font-size: 1.5em;
    }
    .content p {
      font-size: 1.2em;
    }
  }
  