body {
    margin: 0;
    background: #555;
    font-family: Georgia, serif;
    font-weight: 500;
    background: none;
    color: #000000;
  }
  
  #backgroundImage1,
  #backgroundImage2,
  .ovarlay,
  .infoText {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
  }
  
  backgroundImage,
  #backgroundImage1,
  #backgroundImage2 {
    background-color: #f7f6db;
    background-image: url('Logo.jpg');
    background-position: center center;
    background-size: 50%;
  }
  
  .ovarlay {
    background: rgba(0, 0, 0, .3);
    z-index: 5;
  }
  
  .infoText {
    font-size: 80px;
    text-align: center;
    top: 40%;
    background: none;
    letter-spacing: 10px;
    z-index: 6;
    padding: 10px;
  }
  
  .infoText span {
    font-size: 20px;
    letter-spacing: 10px;
    display: block;
  }
  
  .hide {
    opacity: 0;
    -webkit-transition: all 3s 3s ease-in-out;
    -moz-transition: all 3s 3s ease-in-out;
    -ms-transition: all 3s 3s ease-in-out;
    -o-transition: all 3s 3s ease-in-out;
    transition: all 3s 3s ease-in-out;
    z-index: 2;
  }
  
  .show {
    opacity: 1;
    -webkit-transition: all 3s 3s ease-in-out;
    -moz-transition: all 3s 3s ease-in-out;
    -ms-transition: all 3s 3s ease-in-out;
    -o-transition: all 3s 3s ease-in-out;
    transition: all 3s 3s ease-in-out;
    z-index: 3;
  }
  
  .scaleImage {}
  
  @keyframes slidein {
    from {}
    to {}
  }
  
  @media screen and (max-width: 768px) {
    .infoText {
      font-size: 40px;
      letter-spacing: 5px;
    }
    .infoText span {
      letter-spacing: 20px;
    }
  }
  
  @media screen and (max-width: 400px) {
    .infoText {
      font-size: 20px;
      letter-spacing: 1px;
    }
    .infoText span {
      font-size: 10px;
      letter-spacing: 10px;
    }
  }