@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Poppins:wght@500&display=swap');

* {
  padding: 0;
  margin: 0;
  font-family: 'Cinzel', serif;
}

body{
    background: url("bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: black;
    padding: 20px;
    height: 100vh;

}

main{
     display: flex;
    align-items: center;
    justify-content: center;
}

.container_app {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.app_content {
  text-align: center;
}

.app_content h1 {
  padding-top: 5px;
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
}

.app_content p {
  font-size: 20px;
  padding-bottom: 10px;
}

.img-profilo {
  width: 150px;
}

.img-logo {
  width: 50px;
  position: absolute;
  bottom: 0;
  right: 100px;
}

.container_img{
    position: relative;
}

.button{
    display: flex;
    align-items: center;
    padding: 6px;
    background-color: white;
    margin: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.button:hover{
    background-color: yellow;
}

.button a{
    text-decoration: none;
    font-size: 20px;
    color: black;
    padding: 5px;
    width: 100%;
}

.button a:hover{
    color: black;
}

.img-button{
    width: 40px;
}
footer {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

footer a{
    color: white;
}