body {
    margin: 0;
    padding: 0;
    background-color: #030303;
}

.page {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100 */
  }

#contenitore {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 50px;
}

h1 {
    font-size: 35px;
    text-align: center;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

h2 {
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

p, a {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}


a:hover {
    color: aqua;
}

#img {
    display: flex;
    justify-content: center;
}

/*
*********************
* responsive design *
*********************

/* smartphone */
@media (max-width: 767px) {

  h1 {
      font-size: 30px;
  }

  .contenitore {
  padding: 40px;
  }

}

/* portait tablet */
@media (min-width: 768px) and (max-width: 1023px) {


}


/* netbook e landscape Tablet */
@media (min-width: 1024px) and (max-width: 1199px) {
}


/* Desktop */
@media (min-width: 1200px) {

}
