body, html {
    height: 100%;
    margin: 0;
  }
  
  .bg {
    /* The image used */
    background-image: url("./img/background5.png"); 
  
    /* Full height */
    height: 100%; 
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.8;
  }

  .logo {
    position: absolute;
    top: 12.5%;
    left: 0%;
  }

  .bullets {
    position: absolute;
    top: 40%;
    LEFT: 6%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  ul {
    list-style-type: none;
  }
  ul li {
    font-weight: lighter;
    color: #cdcdcd;
    font-size: 45px;
    margin-top: 5px;
    margin-bottom: 25px;
    
    background-image: url("./img/connect-bullet.png");
  	background-repeat: no-repeat;
  	background-position: left center;
	  background-size: 85px;
  }
 
  .bullet-text {
    padding-left: 105px;
    color: #ffffff;
    padding-bottom: -100px;

    text-decoration: underline 1px #2782bb;
    text-underline-offset: 30px;
  }

  .launch-date {
    position: absolute;
    bottom: 8%;
    right: 6%;
  }

  .logo-mobile {
    display: none;
  }
  .bullets-mobile {
    display: none;
  }
  .launch-date-mobile {
    display: none;
  }

  @media only screen and (max-device-width: 1300px) {
    body {
      background-image: url('./img/bg-vertical.png');
    }
    .bg {
      background-image: none;
          /* Full height */
      height: 100%; 
      
       /* Center and scale the image nicely */
      background-position: center;
      background-repeat: repeat;
      background-size: cover;
      opacity: 0.8;
   }
    .logo {
      display: none;
    }
     .bullets {
      display: none;
    }
    .launch-date {
      display: none;
    }
    
    .logo-mobile {
      display: block;
      padding-top: 30px;
      text-align: center;
    }
    .bullets-mobile {
      display: block;
      text-align: center;
    }
    .launch-date-mobile {
      display: block;
      text-align: center;
    }
  }