html,
body {
  height: 100vh;
}
main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-bottom: 5em;
}
.profile {
  border: 1px solid rgba(0, 0, 0, 0.25);
  text-transform: none;
  padding: 1em;
  line-height: 1.25;
  max-width: 450px;
  margin: 0 auto;
}
.profile-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.profile-bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.profile-top div {
  padding: 1em;
}
.profile-bottom div {
  padding: 0.5em;
}
.profile-bottom div {
  padding-left: 0;
}
.profile-bottom div {
  border-top: 1px solid black;
  font-size: 14px;
}
.motto {
  font-size: 14px;
  line-height: 1.25;
  font-style: italic;
}
.profile-bottom .selection {
  border-left: 1px solid black;
  padding-left: 0.75em;
}
.aspect-ratio {
  aspect-ratio: 1 / 1;
  background-color: #ffe600;
  margin-right: 1em;
  margin-bottom: 1em;
}
.profile-top .name-and-motto {
  padding: 0.25em;
  padding-left: 0;
  padding-bottom: 2.5em;
}
.profile-top div.name {
  padding-top: 0;
  padding-left: 0.2em;
  padding-bottom: 0;
  font-size: 60px;
  font-family: "Times New Roman", serif;
  /* font-weight: bold;
        font-style: italic; */
}
.profile details summary {
  font-weight: normal;
}
.profile-bottom .outro {
  border-top: 1px solid black;
  grid-column: 1 / 3;
  font-family: monospace;
  font-size: 12px;
  padding-top: 0.85em;
}

@media (max-width: 1200px) {
  html,
  body {
    height: auto;
  }
  main {
    height: auto;
    display: block;
    margin-top: 5em;
  }
}
