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

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100svh;
  padding-top: 64px;
  padding-inline: 16px;
  padding-bottom: 32px;
  font-family: Verdana, Tahoma, sans-serif, system-ui;
  background-image: url(gvt.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

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

h1 {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: rgb(240, 240, 240);
  text-shadow: 2px 1px 2px rgb(0, 0, 0);
}

a {
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 680px;
}

.links-container {
  display: flex;
  flex-direction: column;
  width: calc(100% - 12px);
  margin-top: 32px;
}

.tile {
  text-align: center;
  border: 2px solid rgb(0, 0, 0);
  transition: none 0s ease 0s;
  box-shadow: 8px 8px 0 0 rgb(0, 0, 0);
  background-color: rgb(255, 254, 254);
  border-radius: 30px;
  padding-inline: 44px;
  padding-block: 16px;
  margin-bottom: 16px;
}

.tile:hover {
  box-shadow: 4px 4px 0 0 rgb(0, 0, 0);
  transform: translate(4px, 4px);
}

.image-container {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 2px 2px 2px 1px rgb(0 0 0 / 30%);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
