:root {
  --content-width: 1120px;
  --container-width: 810px;
  --light-primary-color: 255, 255, 255;
  --light-secondary-color: #dddddd;
  --light-tertiary-color: #272822;
  --light-text-color: black;
  --accent-color: #b40000;
  --font-size: 17.5px;
  min-width: 320px;
  font-family: "PT Sans", "Lato", sans-serif;
}

@font-face {
  font-family: Lato;
  font-weight: 400;
  src: url("/fonts/Lato-Regular.ttf");
}

@font-face {
  font-family: Lato;
  font-weight: 700;
  src: url("/fonts/Lato-Bold.ttf");
}

html {
  background-color: rgb(var(--light-primary-color));
  color: var(--light-text-color);
  font-family: "PT Sans", "Lato", sans-serif;
  font-size: var(--font-size);
  min-height: 100%;
  position: relative;
  scroll-behavior: smooth;
}

body {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 100svh;
  min-width: inherit;
  padding-left: 15px;
  padding-right: 15px;
}

a {
  color: inherit;
}

a:hover {
  color: var(--accent-color);
  fill: var(--accent-color);
}

main#content {
  margin: 0 auto;
  width: var(--content-width);
}

.home-about {
  text-align: center;
}

.home-about .avatar img {
  border-radius: 50%;
  height: auto;
  object-fit: cover;
}

.home-about .avatar img.size-xs {
  height: 7rem;
  width: 7rem;
}

.home-about .avatar img.size-s {
  height: 9rem;
  width: 9rem;
}

.home-about .avatar img.size-m {
  height: 11rem;
  width: 11rem;
}

.home-about .avatar img.size-l {
  height: 13rem;
  width: 13rem;
}

.home-about .avatar img.size-xl {
  height: 15rem;
  width: 15rem;
}

.home-about h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

.home-about h2 {
  font-size: 1.2em;
}

.flex-break {
  flex-basis: 100%;
  height: 0;
}

.gk-social-icons {
  text-align: center;
}

.gk-social-icons .gk-social-icons-list {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.gk-social-icons-list .gk-social-icon {
  box-sizing: border-box;
  display: inline-block;
  fill: var(--light-text-color);
  height: 24px;
  margin: 0 6px;
  width: 24px;
}

.gk-social-icon a {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.gk-social-icon a img,
.gk-social-icon a svg {
  display: block;
  height: 24px;
  width: 24px;
}

.gk-social-icon a svg path {
  transition: fill 0.15s ease;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media only screen and (max-width: 820px) {
  body {
    font-size: 0.95rem;
    padding-left: unset;
    padding-right: unset;
  }

  .flex-break {
    display: block;
  }

  .home-about .avatar img {
    border-radius: 50%;
    height: 7rem;
    width: 7rem;
  }

  main#content {
    box-sizing: border-box;
    padding: 0 1.5rem;
    width: auto;
  }

  .home-about {
    margin: 0 auto;
  }
}
