/* Base */

* {
    box-sizing: border-box;
}

html {
    font-size: var(--fs-base);
}

@media (max-width: 640px) {
  html {
    font-size: var(--fs-base-sm);
  }
}

body {
    background-color: var(--clr-body);
    color: var(--clr-body-text);
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-variant-ligatures: none;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    font-weight: var(--fw-light);
}
    
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-accent);
    font-weight: var(--fw-medium);
    color: var(--clr-accent-primary);
}
    
a {
    color: var(--clr-accent-primary);
    text-decoration-color: var(--clr-accent-primary);
    font-weight: var(--fw-regular);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: color .5s ease;
}
    
a:hover {
    color: var(--clr-accent-primary-light);
}

svg {
    fill: var(--clr-body-text);
}

strong {
    font-weight: 500;
}

em {
    color: inherit;
}

dl {}
dt {
    font-size: .75em;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.25;
    /*color: var(--clr-accent-tertiary);*/
}
dd {
    line-height: 1.2;
    margin-bottom: .5rem;
}

dd a {
    text-decoration: none;
}

/* Header */

.site-header {
    border-bottom: 0px solid var(--clr-accent-secondary-dark);
    padding: 1rem;
}

.site-header__logo {
    max-height: 100px;
    max-width: 50vw;
}

@media only screen and (min-width : 960px) {
    .home .site-header__logo {
        max-height: 160px;
    }
}


/* Main */

.site-main {
    padding: 1rem 0;
}

/* Footer */

.site-footer {
    margin-top: auto;
    background-color: var(--clr-accent-primary);
    color: var(--clr-light);
    font-size: .85rem;
}

.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4 {
    color: inherit;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

/* Material icons */

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 32px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  color: var(--clr-accent-secondary);
}

