/* #1b252e (Dark Blue) */
/* #2a957c (Pale Green) */
/* #fffaef (Off-White)  */
 
 
 :root {
  --bg: #1b252e;
  --bg-alt: #233442;
  --text-body: #fffaef;
  --text-header: #2a957c;
  --text-alt: #9d9d9d;
  --primary: #2a957c;
  --hover: #fffaef;
  --br: 30px;
  --br-alt: 15px;
}


*{
  padding: 0;
  margin: 0;
}


body {
    background-color: var(--bg);
    color: var(--text-body);
    font-family: "zalando-regular","Segoe UI", Helvetica, Arial, sans-serif;
}

h1 {
    color: var(--text-body);
    font-size: 3.25rem;
}

h2 {
    color: var(--text-header);
    font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--text-body);
}

a, button, input, textarea, select, label {
  touch-action: manipulation;
}

img {
  -webkit-touch-callout: none; /* iOS: disables save image menu */
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  -webkit-user-drag: none; /* prevents drag ghost image */

  touch-action: manipulation; /* prevents unwanted gestures */
}

small {
    display: flex;
    justify-content: center;
    padding: 20px;
}


.skip-to-main-content-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: black;
  color: white;
  opacity: 0;
}
.skip-to-main-content-link:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}


.site-header {
    display: flex;
    position: sticky;
    flex-direction: row;
    height: 100%;
    height: 10vh;
    border-bottom: 2px solid var(--bg-alt);
}

.brand img {
    width: 20%;
}

.home-hero {
    display: flex;
    flex-direction: row;
    margin: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    flex-direction: row;
    /* justify-content: space-between; */
    gap: 40px;
}

.hero-text p {
    color: var(--text-alt);
}

.hero-image picture img {
    border-radius: var(--br);
    max-width: 20vw;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 50%;
}

.hero-text a {
    background-color: var(--primary);
    border-radius: var(--br-alt);
    padding: 10px;
    justify-content: center;
    text-align: center;
    width: 30%;
    transition: 0.2s ease-in-out;
}
.hero-text a:hover {
    background-color: var(--hover);
    color: #1b252e;
}


.site-footer {
    border-top: 2px solid var(--bg-alt)
}

.feature-section {
    margin: 100px;
}
.feature-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.feature-cell {
    background-color: var(--bg-alt);
    border-radius: var(--br-alt);
    width: 40rem;
    height: 10rem;
    gap: 1rem;
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-cell p {
    color: var(--text-alt);
}

.footer-links-title {
    font-weight: bold;
}


.featured-links {
    font-weight: 100;
    display: flex;
    flex-direction: column;
}

.featured-links ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 20px;
    list-style: none;
}
.featured-links ul a:hover {
    color: var(--text-alt);
    transition: 0.15s ease-in;
}

.site-footer {
    padding: 50px;
}