/* Place your CSS styles in this file */

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Regular.woff2') format('woff2'),
       url('fonts/LeagueSpartan-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-SemiBold.woff2') format('woff2'),
       url('fonts/LeagueSpartan-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

body {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem); 
  font-weight: 400;
  text-align: left;
  margin: 0 auto; 
  max-width: 1024px; /* or whatever width you want */
  padding: 0 1rem;   /* optional: adds spacing on sides */
  background-color: #f3f3f3;
}

h1 {
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
}

h2 {
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 3.5rem);
}

strong, .semibold {
  font-weight: 600;
}

a:link {
  color: #0099bb;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #9a9999;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #62c9e0;
  background-color: transparent;
  text-decoration: none;
}

a:active {
  color: #0099bb;;
  background-color: transparent;
  text-decoration: none;
}

.talwind-color1 { color: #0099bb; }
.talwind-color2 { color: #dd5555; }
.talwind-color3 { color: #eecc55; }
.talwind-color4 { color: #88cc66; }
.talwind-background-color { background-color: #d6d6d6; }
.talwind-border { border: solid #dddddd; border-top: 1.5vw solid #dddddd}

.section { 
  padding:4vw;
  margin-top:1vw;
}

a.menu {
  color: black;
  background-color: transparent;
  margin-right:1vw;
  text-decoration: none;
}
a.menu:hover {
  color: #0099bb;
  background-color: transparent;
  text-decoration: none;
}
a.menu:link {
  color: black;
  background-color: transparent;
  text-decoration: none;
}
a.menu:visited {
  color: black;
  background-color: transparent;
  text-decoration: none;
}
a.menu:active {
  color: #0099bb;;
  background-color: transparent;
  text-decoration: none;
}

p.footer {
  font-size: clamp(0.8rem, 2vw, 1.3rem); 
  font-style: italic;
  text-align: justify;
  color: #888888;
}

