@import "./w3.css";
@import "./colors.css";
@import "fonts/jost.css";

body {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    font-size: medium;

    color: var(--color-yellow);
    background-color: var(--color-blue);
}

strong {
    font-weight: 700;
}

address {
    font-style: normal;
}

address ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    opacity: 0.7
}

a i {
    margin-right: 10px;
}

nav {
  overflow: hidden;
  background-color: rgba(var(--color-yellow-triplet), 0.6);
}

nav a {
  float: left;
  display: block;
  color: var(--color-blue);
  padding: 16px;
  text-decoration: none;
  text-align: center;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.w3-container {
    max-width: 1000px;
    margin: auto;
}

.text-smaller {
    font-size: smaller;
}

.text-large {
    font-size: large;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.narrower {
    width: 80%;
}

.rounded-corners {
    border-radius: 1%;
}

.logo-container {
    padding-bottom: 5vh;
}

/* disable for now */
/* .hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-blue);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
} */

.copyright {
    opacity: 0.7;
}

.footer-header {
    padding-bottom: 20px;
    font-size: large;
}

.social i {
    font-size: 24px;
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-dark {
    background-color: var(--color-grey);
}

.bg-light {
    background-color: rgba(var(--color-yellow-triplet), 0.3);
}

.bg-yellow {
    background-color: rgba(var(--color-yellow-triplet), 0.6);
}

.bg-primer {
    background-color: white;
}

.fg-blue {
    color: var(--color-blue);
}

.max-logo-height {
    max-height: 45vh;
}
