* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #f1f3f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  font-weight: bold;
  font-size: 23px;
  font-family: "Cherry Bomb One", system-ui;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: blue;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-item{
  text-align: center !important;
  align-items: end !important;
}*/


.container_my {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  width: 100%;
}

@media(min-width: 768px) {
  .left-column {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 30%;
    background: white;
  }

  .right-column {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 70%;
    background: skyblue;
  }

}

.profile-img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto 40px;
}

.info {
  text-align: center;
}

h1 {
  font-size: 25px;
  margin-bottom: 10px;
}

h1 span {
  font-size: 23px;
  font-weight: normal;
}

.subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

.email {
  display: inline-block;
  background: black;
  color: white;
  text-decoration: none;
  padding: 10px 30px;
  margin-bottom: 20px;
}

.right-column {
  padding: 80px;
  padding-bottom: 0px;
}

.right-column h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.border {
  border-bottom: 2px solid black !important;
  margin: 20px 0;
}

.right-column p {
  margin-bottom: 20px;
  text-align: justify;
}

.university {
  text-decoration: none;
}

/*.elementi {
  display: inline-block;
  border: 1px solid black;
  padding: 10px 30px;
  margin: 10px;
  text-decoration: none;
  color: black;
}*/

.social {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 80px;

}

.social img:hover {
  width: 24px;
  height: 24px;
}

/*.buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}*/

p {
  font-size: 18px;
}

footer {
  height: 40px;
  display: flex;
  justify-content: center;
}