* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url(../img/ai2.jpg);
  background-size: cover;
}

.container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 30px 50px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 15px;
  font-family: "PT Serif", serif;
  color: white;
}

.titolo {
  text-align: center;
  font-size: larger;
}

.skills {
  padding-top: 30px;
}

.footer {
  padding: 8px 32px;
  background-color: white;
  border-top: 1px solid lightgray;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-content .copyright {
  font-size: 15px;
}

.social-icons a {
  font-size: 24px;
  margin-left: 20px;
}

.social-icons a:hover {
  color: darkgrey;
}