
/* Reset default margin/padding */

:root {

  --accent-color: #4AA75B;
  /* --accent-color: #569797; */

  --text-1: #000000;
  --text-2: #818181;

  --bg-1: #FFFFFF;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text-1: #FFFFFF;
    --text-2: #aaaaaa;

    --accent-color: #B3EDAB;

    --bg-1: #335C5C;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: var(--bg-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

p {
  text-align: center;
  margin: 2em 1em;
  font-weight: normal;
  color: var(--text-2);
}

#nametag {
  margin-top: 100px;
  text-align: center;
  padding: 4em 2em;
  border-radius: 10px;
}

#nametag h1 {
  color: var(--text-1);
  font-size: 4rem;
}

#nametag p {
  font-weight: bold;
  margin: 0.2em 0em;
  font-size: 2rem;
  color: var(--text-2);
}

.social-icons {
  margin-top: 2em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  margin: 0 0.75em;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.social-icons a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-icons svg {
  fill: var(--text-1);
  width:  2em;
  height: 2em;
}
