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

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
  color: white;
  font-size: 18px;
  font-weight: 300;
  text-align: center;

  background: url(../images/bg-03.jpg) center center no-repeat;
  background-size: cover;
}

.container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;

  background: rgba(46,174,102,0.7);
}



.logo {
  display: inline-block;
  width: 100px;
  height: 80px;
  background-image: url(../images/weblapteam-logo-white.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;

  margin-top: 100px;
}

.big {
  font-size: 48px;
  /*line-height: 200px;*/
  margin-top: 2em;
  margin-bottom: 0.5em;
}

@media (max-width: 680px) {
  .big {
    font-size: 24px;
    line-height: 100px;
  }  
}


.social {
  text-align: center;
}
.social ul {
  padding: 0;
  margin: 0;
}
.social ul li {
    list-style: none;
    display: inline;
    text-align: center;
    margin: 0 4px 0 4px;
    cursor: pointer;
}
.social ul li a.fa {
    color: #fff;
    font-size: 22px;
/*    border: solid 2px #fff;
    border-radius: 100%;*/
    padding: 13px 0 0 0;
    text-align: center;
    display: inline-block;
    width: 45px;
    height: 32px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}