*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
  font-size: 62.5%;
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: 2rem;
  background: rgb(27, 27, 27);
  color: #777;
  padding: 3rem;
}

section {
  margin-top: 1.5rem;
  padding: 3rem;
}

h1 {
  text-align: center;
  text-transform: uppercase;
  color: #22c2ce;
  text-shadow: .2rem .2rem 0 #000;
}

p {
  margin: .5rem;
}

a {
  text-align: center;
  text-decoration: none;
  color: #fff;
}

a:hover {
  text-decoration: underline;
  text-shadow: 0 0 .8rem rgba(255, 255, 255, .8);
}

div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: .2rem;
}

.logo {
  width: 35vw;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 2rem;
}

.descrizione {
  text-align: center;
  font-size: 2rem;
  text-shadow: .1rem .1rem 0 #000;
}

.blocchi {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

footer {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  text-align: center;
  font-size: 1.4rem;
  padding-top: 1rem;
  text-shadow: .1rem .1rem 0 #000;
}

@media screen and (max-width: 996px) {
  html {
    font-size: 52%;
  }
  
  section {
  margin-top: 0;
  padding: 2rem;
  }

  .blocchi {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  }

  .blocchi div {
    margin-top: 2rem;
  }

  .logo {
    width: 50vw;
  }

}

