:root {
  --primary-color: #39f;
  --primary-font-family: 'Roboto', sans-serif;
  --header-height: 94px;
  --footer-height: 40px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 20px;
}

body {
  background-color: #000;
  color: #ebebeb;
  font-family: var(--primary-font-family);
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

header,
main,
footer {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1440px;
  margin: 0 auto;
}

footer {
  font-size: 0.7rem;
  font-weight: 300;
  padding: 0.5rem 1rem;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--footer-height);
}
@media screen and (min-width: 500px) {
  footer {
    justify-content: flex-end;
  }
}

h1 {
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
}

h2 {
  margin: 1rem 0;
  font-weight: 500;
  text-align: center;
  font-size: 1.34rem;
}
@media screen and (min-width: 1000px) {
  h2 {
    text-align: left;
    margin-bottom: 0.5rem;
  }
}

a,
a:visited,
a:hover,
a:active {
  display: inline-block;
}

a:focus,
a:focus-within,
a:hover {
  opacity: 0.75;
  outline: none;
}

a:last-child {
  margin-left: 0.5rem;
}

header {
  display: flex;
  padding: 1rem;
  height: var(--header-height);
}

header svg {
  height: auto;
  width: 34px;
  margin: 0 auto;
}
@media screen and (min-width: 500px) {
  header svg {
    margin: 0;
  }
}

header svg .logo-path {
  stroke: #fff;
  stroke-width: 10px;
}

main {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  margin: 0 auto;
  padding: 0 1rem 1rem;
}

section {
  flex-direction: column;
  margin: 0 auto;
  max-width: 90vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (min-width: 1000px) {
  section {
    flex-direction: row;
    padding-bottom: 1.5rem;
    text-align: left;
  }
}
@media screen and (min-width: 1234px) {
  section {
    max-width: 80vw;
  }
}

section img {
  border-radius: 2px;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 500px) {
  section img {
    max-height: 75vh;
    max-width: 66%;
    width: auto;
  }
}
@media screen and (min-width: 1000px) {
  section img {
    max-width: 50%;
  }
}

.site-title {
  display: none;
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0 1rem;
  white-space: nowrap;
}
@media screen and (min-width: 500px) {
  .site-title {
    display: block;
  }
}

.profile-content {
  --profile-content-spacing: 2rem;
  min-width: 50%;
  margin: var(--profile-content-spacing) 0;
  max-width: 85vw;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .profile-content {
    margin: 0;
    max-width: 40vw;
    padding: 2.5vw;
    text-align: left;
  }
}
@media screen and (min-width: 1234px) {
  .profile-content {
    max-width: 50%;
  }
}

.profile-content h1,
.profile-content h1 + span {
  display: block;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .profile-content h1,
  .profile-content h1 + span {
    text-align: left;
  }
}

.profile-content p {
  margin: 0.33rem auto 1rem;
}

.contact-links {
  fill: var(--primary-color);
}
