*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  /* reduce text spacing */
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: rgb(4, 121, 255)
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(163, 4, 255)
}

.super-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 800px;
  margin: 60px auto;
  gap: 60px;
}

h1 {
  font-size: 1.5rem;
  font-weight: 450;
  margin-bottom: 15px;
}

h4 {
  font-weight: 350;
  font-size: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 40px;
  font-weight: 350;
  text-align: justify;
  line-height: 1.4;
}

#name-heading {
  font-size: 1.6rem;
  margin: 20px 0;
}

.left-container, .right-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}


#profile-picture {
  width: 160px;
  border-radius: 10px;
}

.links-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.paper-title {
  font-size: 1rem;
  font-weight: 450;
  margin-bottom: 10px;
}

.project-description {
  font-weight: 350;
  margin-bottom: 10px;
}

.project-title {
  font-weight: 500;
  margin-bottom: 10px;
}

#resume-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}