body {
  font-family: 'Roboto', 'Helvetica Neue', 'Helvetica','Arial', sans-serif;
  font-size: 12px;
  background-color: #f0f1f2;
  display: flex;
  justify-content: center;
  margin: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 640px;
  min-width: 280px;
  min-height: 540px;
  margin-block-start: 120px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  box-shadow: 0 3px 5px 2px rgba(171, 184, 204, .3);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner-content {
  width: 70%;
  height: 70%;
}

img.self {
  box-shadow: 0 1px 2px 1px rgba(171, 184, 204, .3);
  width: 100%;
  height: 100%;
}

h1 {
  margin: 0;
  margin-block-start: 16px;
  margin-block-end: 12px;
}

p {
  margin: 0;
  margin-block-end: 3px;
  margin-inline-start: 16px;
  color: rgb(116, 124, 138);
}

.link-row {
  margin-block-start: 32px;
  font-size: 28px;
  display: flex;
  justify-content: center;
}

a.link-button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-decoration: none;
  color: initial;
  
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

a.link-button:hover {
  background-color: rgba(171, 184, 204, .3);
}

a.link-button:active {
  background-color: rgb(116, 124, 138)
}

a.link-button:not(:last-child) {
  margin-inline-end: 4px;
}

@media screen and (max-width: 480px) {
  .container {
    width: 100%;
    height: 100vh;
    margin-block-start: 0;
  }
}

