/* -----------------------------------
   Fonts
-------------------------------------- */
@font-face {
  font-family: 'Metropolis';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: local('Metropolis Regular'), local('Metropolis-Regular'), /* Optional: Add local font names if desired */
       url('/fonts/Metropolis-Regular.woff2') format('woff2'), /* Modern Browsers */
       url('/fonts/Metropolis-Regular.woff') format('woff'); /* Older Browsers */
}

@font-face {
  font-family: 'Metropolis';
  font-style: normal; /* Corrected: Use 'normal' not 'bold' */
  font-display: swap;
  font-weight: 600; /* This defines the boldness */
  src: local('Metropolis SemiBold'), local('Metropolis-SemiBold'), /* Optional: Add local font names if desired */
       url('/fonts/Metropolis-SemiBold.woff2') format('woff2'), /* Modern Browsers */
       url('/fonts/Metropolis-SemiBold.woff') format('woff'); /* Older Browsers */
}

:root {
  --bg: #EDEFF1;
  --text: #666;
  --title: #000;
  --primary: #490AF5;
  --secondary: #C2C2C2;
  --secondary-text: #888;  
}


body {
  font-family: 'Metropolis', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 60px auto 0 auto;
  max-width: 500px;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 80px 20px;
}

.logo{
  color: var(--title);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.12em;
  margin: 60px 0 60px 0;
}
header{
display: flex;
  align-items: center; /* Vertically aligns children */
  position: relative;
}
header .tab {
    height: 40px;
    width: 6px;
    background-color:var(--primary);
    margin-right: 16px; /* Space between box and h1 */
    margin-left: 0px;
    position: absolute;
    /* left: -80px; */
    transform: skew(20deg); /* Negative for left slant, positive for right */
    left: 16px;
    top: -20px;
    height: 40px;
    rotate: 90deg;
}

section p{
  margin: 0 0 22px 0;
  color: var(--text);
}

section a{
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--secondary);
  text-underline-offset: 4px;
}
section a:hover {
text-decoration: none;
background-color: #490AF5;
display: inline-block;
color: white;
}   

section .sig-title a{
  color: var(--secondary-text);
  text-decoration: none;
}
section .sig-title a:hover {
  color: var(--primary);
  background-color: transparent;
}

div.sig {
    background-image: url('/style/sig.svg');
    display: block;
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 60px;
}
.sig-title {
    font-size: 12px;
    margin-top: -10px;
    color: var(--secondary-text)
}


/* Mobile */
@media screen and (max-width: 540px) {
  body {
    padding: 20px 20px;
    margin: 5% auto;
    font-size: 1.1em;
  }
  div.sig {
    margin-top: 30px;
  }
  .logo {
    margin: 20px 0 40px 0;
  }
}