html {
  width: 100%;
  height: 100%;
}

body {
  background-image: url('img/background.jpg');
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, .65);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.outlined-text {
  color: rgba(0, 0, 0, 0.75);
    text-shadow: 
        -1px -1px 0 rgba(255, 255, 255, 0.25),  
         1px -1px 0 rgba(255, 255, 255, 0.25),
        -1px  1px 0 rgba(255, 255, 255, 0.25),
         1px  1px 0 rgba(255, 255, 255, 0.25);  
    font-size: 48px;
    font-weight: bold;
}

/* logo */

.logo-container {
  background-color: rgba(0, 0, 0, .75);
  padding: 20px
}

.content-container {
  width: 100%;
  padding-top: 20px;
  text-align: center;
}

.button-padding {
  padding: 0px 120px;
}


/* buttons */

.button-container {
  position: absolute;
  bottom: 15%;
  width: 100%;
}

.support {
  transition: width 1s ease;
}

.support:hover {
  /* width: 80%; */
}

.download-win {}

.download-mac {}

@media (min-width: 768px) {
  body {
    background-image: url('img/background.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
  }
  .overlay {
    background-color: rgba(0, 0, 0, .0);
  }
  .logo-container {
    background-color: rgba(0, 0, 0, 0);
    padding: 0px
  }
  .content-container {
    width: 100%;
    position: absolute;
    top: 60px;
    text-align: center;
  }
  .button-padding {
    padding: 40px 80px;
  }
  .button-padding.drop {
    margin-top: 200px;
  }

  .outlined-text {
    font-size: 64px;
  }
}


.downloads {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
}

.downloads a { display: block; width: 100%; height: 100%; }

