:root {
    --pads: clamp(24px, 5vw, 64px);
    --innerpads: clamp(12px, 5vw, 32px);
    --max-width: 1200px;
}

html, body {
    background-color: #fff;
}

h1 /* titles */ {
    font-family: 'Neug Asia', 'sk-modernist', system-ui, -apple-system, sans-serif;
    font-weight: normal;
    font-size: clamp(2rem, 4vw, 4rem);
}

h2 /* subtitles */ {
    font-family: 'sk-modernist', system-ui, -apple-system, sans-serif;
    font-size: clamp(1.3rem, 2vw, 2rem);
    display: inline-block;
    /* line-height: clamp(1.2rem, 6vw, 3rem); */
    overflow-y: hidden;
}

h3 /* descriptions */ {
    font-family: 'sk-modernist', system-ui, -apple-system, sans-serif;
    color: #084999;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
}

h4 /* descriptions */ {
    font-family: 'sk-modernist', system-ui, -apple-system, sans-serif;
    color: #686868;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}

/* navbar ---------------------------------------------------------------- */


/* navbar stuff------------------------------- */
.navbar-links {
    color: #4f78f3;
}

.navbar-links:hover {
    color: #0d0433;
}

/* Change navbar hover color to white when past projects section */
body.past-projects .navbar-links:hover {
    color: #fff;
}

/* landingggggg */
.landing {
    padding: var(--pads);
    padding-top: 18vh;
    position: relative;
}

.landing-content h2{
    display: grid;
    place-items: center;
    text-align: center;
}

.landing-content {
    display: grid;
    place-items: center;
}


.loading-gif {
    padding-top: 3%;
    width: 30%;
    height: auto;
    pointer-events: none;

}

@media screen and (max-width: 750px) {
    .loading-gif {
    width: 60%;
    }
}

/* i like feet */


.divider {
    padding: var(--thick-pads);
    width: 100%;
    height: 2px;
    background-color: #C1E9FF;
    opacity: 0.6;
    margin: 4rem 0;
  }
  
.footer {
    padding: var(--pads);
    padding-top: 4rem;
    padding-bottom: clamp(6rem, 4vw, 10rem);
}

.footer h1 {
    font-size: clamp(2rem, 4vw, 5rem);
}

.footer h2 {
    padding-top: 1rem;
}

.foot-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.foot-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.foot-item p {
    margin-top: 0;
    padding-top: 0;
    font-weight: 600;
    opacity: 0.9;
    font-size: clamp(1.2rem, 1vw, 1.5rem);
}

.foot-links {
    text-decoration: none;
    transition: color 0.2s ease;
    color: #1b3b74;
    font-size: clamp(1rem, 1vw, 1.2rem);
}

.foot-link {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 2rem);

}
  
.foot-links:hover {
    color: #5ec6fe;
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .foot-container {
        display: flex;
        flex-direction: column;
    }
}
  
  