/*noinspection CssUnknownTarget*/
@import url(https://fonts.googleapis.com/css2?family=Roboto&display=swap);
:root {
  --text: black;
  --background: whitesmoke;
  --hover-color: azure;
  --selection: powderblue;
  --socials-background: ivory;
}
@media (prefers-color-scheme: dark) {
  :root {
    --text: white;
    --background: #181818;
    --hover-color: #1d1d1f;
    --selection: #004792;
    --socials-background: #121212;
  }
}
:root body {
  padding: 5%;
  font-family: Roboto, sans-serif;
  line-height: 1.5em;
  text-align: center;
  font-size: 1.75em;
  background: var(--background);
  color: var(--text);
}
h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
#socials a {
  text-decoration: none;
  color: #0b57d0;
  transition: 0.15s linear;
  display: inline-flex;
  background: var(--socials-background);
  border-radius: 0.5em;
  padding: 1em;
  margin: 0.5rem;
  text-align: center;

}
#socials a:hover {
  background: var(--hover-color);
  color: #43a8f2;
}
img {
  display: flex;
}
#socials a img {
  width: 1.75rem;
  display: inline-flex;
  margin: 0.25em 0.5rem 0.25em 0;
}
#Joseph {
  border-radius: 50%;
  width: 1.5em;
  display: inline-flex;
  margin: 0.25em 0.5em 0.25em 0;
}
footer {
  font-size: 0.5em;
}
::selection {
  background: var(--selection);
}