.page-content {
  width: 85%;
  max-width: 2000px;
  padding-top: 3rem;
  padding-bottom: 5rem;
  display: flex;
  justify-content: space-between;
}

#logo {
  width: 50px;
  height: auto;
}

#aboutme-text-container {
  max-width: 1000px;
  min-width: 400px;
  margin-bottom: 3rem;
}

#aboutme-text-container p {
  font-size: xx-large;
}

#aboutme-text-container span {
  display: inline-block;
  transition: ease-in-out 80ms;
  padding: 0.5rem;
  color: rgb(119, 161, 238);
  border: solid 2px rgb(119, 161, 238);
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgb(119, 161, 238);
  transform: translate(-4px, -4px);
}

#aboutme-text-container span:hover {
  cursor: pointer;
  color: rgb(119, 161, 238);
  border: solid 2px;
  transition:
    transform 0.1s ease-in-out,
    box-shadow 0.1s ease-in-out;
  box-shadow: 0 0 0 rgb(119, 161, 238);
  transform: translate(0, 0);
}

#aboutme-text-container > h1 {
  padding: 1rem 0 0 0;
}

.potrait-container > img {
  width: 300px;
  height: auto;
  transition: 80ms;
  transform-origin: center;
  border-radius: 50%;
  border: solid 0.6rem rgb(119, 161, 238);
}

.potrait-container > img:hover {
}

.title {
  font-weight: bold;
  color: rgb(119, 161, 238);
}

.socials-container {
  display: flex;
  flex-direction: row;
}

.socials-button {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.1rem 0.5rem 0.1rem 0.5rem;
  border: solid 2px;
  border-radius: 10px;
  min-width: 120px;
  height: 50px;
  margin-right: 1rem;
  transition:
    transform 0.1s ease-in-out,
    box-shadow 0.1s ease-in-out;
  box-shadow: 0 0 0 rgb(119, 161, 238);
}

.socials-button:hover {
  cursor: pointer;
  color: rgb(119, 161, 238);
  box-shadow: 4px 4px 0 rgb(119, 161, 238);
  transform: translate(-4px, -4px);
}

.socials-button:hover svg {
  fill: rgb(119, 161, 238);
}

svg {
  fill: white;
}

.contact-me-container {
  display: flex;
  align-items: center;
  justify-self: flex-end;
  margin-left: auto;
}

.contact-me-container p {
  font-weight: bold;
}

.contact-me-container > div {
  margin-left: 1rem;
}

footer {
  display: flex;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  padding: 1rem;
  z-index: 10;
}
