* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url('daria2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: 'Courier New', monospace;
  color: #111;
  font-weight: 600;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
}



.profile {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid white;
  margin-bottom: 16px;
}
.title p {
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.intro p {
  text-align: right;
  margin-bottom: 120px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.links p {
 margin-top: 60px;
  margin-bottom: 12px;
  text-align: left;
}

.buttons a, .extra-links a {

  padding: 4px 10px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 8px;
  text-align: left;
}

.buttons a:hover, .extra-links a:hover {
  background-color: #111;
  color: white;
}

.footer {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #444;
}

.overlay {
  max-width: 500px;
  min-width: 200px;
  margin-left: 400px;
  text-align: left;
}