@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import './_variables.css';

* {
    padding: 0;
    margin: 0;
    block-size: auto;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--light-color);
    color: white;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

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

.gap-1 {
    gap: var(--size-1);
}

.gap-2 {
    gap: var(--size-2);
}

.gap-3 {
    gap: var(--size-3);
}

.gap-4 {
    gap: var(--size-4);
}

.gap-5 {
    gap: var(--size-5);
}

.h-100 {
    height: 100%;
}

.flex-grow-1 {
    flex-grow: 1;
}

nav {
    height: 50px;
}

.nav-links {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    position: relative;
}

.nav-link a {
    text-decoration: none;
    color: white;
    font-weight: 700;
}

.nav-link::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 200ms;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}