html,
body {
  height: 100%;
}
body {
  background: #fbfbf9;
  color: #333;
  font: 16px/1.6 'Arial', sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

.outer-container {
  max-width: 800px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.inner-container {
  padding: 40px;
}

.just-me {
  max-width: 100%;
  height: auto;
  width: 200px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

p {
  text-align: left;
  line-height: 1.6;
}

a,
a:visited {
  color: #003366;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

a:hover,
a:focus {
  color: #004080;
  border-color: #003366;
}

.elsewhere {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.elsewhere__item {
  display: inline;
  margin: 0 10px;
}

.elsewhere a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s;
}

.elsewhere a:hover {
  transform: translateY(-3px);
}