html, body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  background-image: url('img/bg-elolab.jpg');
  color: rgba(0, 0, 0, .87);
  font-family: 'Roboto', arial, sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  padding: 32px;
  overflow: auto;
  /*background: #fff;*/
  /*box-shadow: 0 4px 5px -2px rgba(0, 0, 0, .2), 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 1px rgba(0, 0, 0, .12);*/
  text-align: center;
}
.welcome-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 0 24px 0 0;
}
.welcome-box h1{
  color: #fff;
  margin: 84px 0;
}
.welcome-box p{
  color: #fff;
  font-size: 1.35rem;
}
.modules {
  display: flex;
  flex-direction: column;
}

.item-module {
  /*width: 25%;*/
  float: left;
}

.item-module a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 69px;
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, .2), 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 1px rgba(0, 0, 0, .12);
  margin-bottom: 12px;
  transition: background-color 0.5s linear,
  left .3s ease-out 0.5s,
  transform 1s steps(3, start);
}
.item-module a:hover {
  background: #0a75a9;
}


.item-module a .item-module-content{
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.item-module a img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #0a75a9;
}

.item-module a h2 {
  color: #000;
  margin-bottom: 0;
}

.item-module p {
  padding: 0 24px;
  color: rgba(0, 0, 0, .54);
}


/*RESPOSIVE*/

@media (max-width: 600px) {
  .container {
    padding: 0;
    flex-direction: column;
  }
  .container .welcome-box{
    padding: 12px;
  }
  .container .welcome-box h1{
    margin: 12px 0;
    font-size: 1.5rem;
  }
  .logo {
    width: 100%;
    margin-top: 25px;
    max-width: 122px;
    margin-bottom: 20px;
  }
  .modules{
    padding: 0 12px;
  }

  .modules .item-module a{
    margin-top: 70px;
  flex-direction: column;
  align-items: center;
}
  .modules .item-module a img{
    margin-top: -70px;
  }
  .item-module a .item-module-content{
    width: 100%;
  }
  .item-module a h2{
    margin-top: 8px;
  }
  h1, h2, p {
    padding: 0 15px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0;
  }
  .logo {
    width: 100%;
    margin-top: 25px;
    max-width: 122px;
  }
  .modules .item-module {
    width: 100%;
  }
  h1, h2, p {
    padding: 0 15px;
  }
}
