body {
  height: 100vh;
  display: flex;
  background-color: black;
  color: white;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.text {
  width: 100%;
  height: 100px;
  position: fixed;
  display: flex;
  justify-content: center;
  z-index: 10;
  align-items: center;
}
.text > h1 {
  width: 600px;
  padding: 20px;
  text-align: center;
  text-justify: center;
  border: 1px solid white;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: inset 2px 2px 20px 3px white;
  text-shadow: 1px 1px 10px black;
}
.container {
  margin-top: 150px;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  height: auto;
}
.container > a {
  max-width: 256px;
  max-height: 256px;
  margin: 50px;
  transition-duration: 400ms;
  border-radius: 50%;
  overflow: hidden;
}
.container > a:hover {
  transform: scale(1.1);
}
.container > a > img {
  width: 100%;
  height: 100%;
}
