html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    letter-spacing: 0.6px;
    color: white;
    background-image: url(./images/blurred.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
#container {
    width: 80%;
    margin-top: -10px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#user-info {
    filter: blur(0px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#user-info p{
    font-size: 0.9em;
    margin-top: 0px;
    margin-bottom: 12px;
}

#user-info p#name{
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 18px;
}

#user-info img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid whitesmoke;
}

#user-info .social {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 15px;
}

#user-info .social img {
    width: 35px;
    height: 35px;
    border-radius: 0px;
    filter: invert(1);
    margin: 12px;
    border: 0px
}

#button-container {
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.button {
    background-color: whitesmoke;
    border-radius: 15px;
    margin-top: 25px;
    width: 100%;
    padding: 8px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.button span {
    flex-grow: 1;
    text-align: center;
    color: rgb(49, 55, 58);
    font-weight: bold;
    margin-right: 45px;
    
}

.button img {
    width: 46px;
    height: 46px;
    margin-left: 10px;
}

/* Stili per schermi con larghezza massima di 768px, ad esempio tablet */
@media (max-width: 768px) {
    #container {
      width: 90%;
      margin-top: -2%;
    }
    #user-info img {
      width: 105px;
      height: 105px;
    }
    #user-info p#name {
      font-size: 1.2em;
    }
    #user-info .social {
        margin-top: 10px;
    }
    #user-info .social img {
      width: 32px;
      height: 32px;
      margin: 12px;
    }
    #button-container {
      width: 90%;
      margin-top: 0px;
    }
    .button span {
        padding: 10px 0px;
      }
    .button span {
      font-size: 0.9em;
      margin-right: 25px;
    }
    .button img {
      width: 36px;
      height: 36px;
      margin-left: 10px;
    }
  }
  
  /* Stili per schermi con larghezza massima di 480px, ad esempio smartphone */
  @media (max-width: 480px) {
    #container {
      width: 97%;
      margin-top: -2%;
    }
    #user-info img {
      width: 100px;
      height: 100px;
    }
    #user-info p#name {
      font-size: 1.2em;
    }
    #user-info p {
        margin-top: -2px;
        font-size: 1em;
      }
    #user-info .social {
        margin-top: 10px;
    }
    #user-info .social img {
      width: 35px;
      height: 35px;
      margin: 15px;
    }
    #button-container {
      width: 97%;
      margin-top: 10px;
    }
    .button {
      margin-top: 20px;
    }
    .button span {
      font-size: 0.9em;
      margin-right: 35px;
    }
    .button img {
      width: 32px;
      height: 32px;
      margin-left: 15px;
    }
  }