body {
  position: relative;
  height: 100vh;
  width: 100vw;
  margin: 0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: white;
  transition: opactiy, 250ms;
  pointer-events: none;
}

.loaded {
  opacity: 0;
}

.container {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: 30px 1fr 30px;
  justify-items: center;
  grid-template-areas:
    ". language ."
    ". content ."
    ". contact .";
  text-align: center;
}

.avatar {
  border-radius: 50%;
  height: 200px;
}

.content {
  grid-area: content;
  align-self: center;
  max-width: 530px;
  margin: 0 40px;
}

@media (max-width: 400px) {
  .content {
    margin: 0 20px;
  }
}

h1 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 200;
  margin-bottom: 8px;
}

h1 .name {
  font-weight: 600;
}

h2 {
  font-weight: 100;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 20px;
}

.about-me {
  font-size: 13px;
}

.links {
  margin: 30px;
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

@media (max-width: 400px) {
  .links {
    flex-direction: column;
  }
}

.contact {
  cursor: pointer;
  margin-top: 25px;
  color: inherit;
  grid-area: contact;
  margin-bottom: 10px;
  align-self: flex-end;
}

.anti-spam {
  display: none;
}


.link-card {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  width: 33.3%;
}

@media (max-width: 400px) {
  .link-card {
    width: 100%;
  }
}

.link-header {
  margin: 0;
  color: #2c2c2c;
  font-size: 15px;
}

.link-button {
  display: flex;
  margin: auto;
  max-width: 220px;
  border-radius: 20px;
  margin-top: 13px;
  padding: 8px;
  align-items: center;
  justify-content: center;
}

.link-button:hover {
  box-shadow: 1px 1px 4px 2px lightgray;
}

.link-card svg {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.4em;
  vertical-align: top;
  fill: #fff;
  stroke: none;
}

.link-card.github .link-button {
  background-color: #212529;
}

.link-card.linkedin  .link-button {
  background-color: #00629c;
}

.link-card.vimeo  .link-button {
  background-color: #32B8E8;
}
