:root {
    --dark-grey: #403F3F;
    --less-dark-grey: #535353;
    --light-grey: #ADADAD;
    --lighter-blue: #6FA0B2;
    --darker-blue: #668996;
    --darker-blue-opacity-07: rgba(102, 137, 150, 0.7);
    --white: #fff;
    --black: #000;
}

@font-face {
    font-family: "Nexa Heavy";
    src: url("../assets/webfonts/Nexa-Heavy.ttf");
}

@font-face {
    font-family: "Nexa Extra Light";
    src: url("../assets/webfonts/Nexa-ExtraLight.ttf");
}

body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--white);
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nexa Heavy";
}

.colored-link {
    color: var(--darker-blue) !important;
}

.lighter-blue-box-shadow {
    -webkit-box-shadow: 0px 0px 22px 3px rgba(111, 160, 178, 1);
    -moz-box-shadow: 0px 0px 22px 3px rgba(111, 160, 178, 1);
    box-shadow: 0px 0px 22px 3px rgba(111, 160, 178, 1);
}

.contentBox {
    padding: 3rem;
    border-radius: 2rem;
    width: 75vw;
}

.gap-3 {
    gap: 3rem;
}

.gap-05 {
    gap: 0.5rem;
}

.margin-3 {
    margin: 3rem;
}

.link {
    text-decoration: none;
    color: var(--black);
    font-weight: 800;
}
.link:hover {
    border-bottom: 2px solid var(--black);
}

.flex {
    display: flex;
}

.flex1 {
    flex: auto;
}

.v-h-centre {
    justify-content: center;
    align-items: center;
}

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

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

.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.overflow-hidden {
    overflow: hidden !important;

}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

@media screen and (max-width: 720px) {
    .grid {
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        gap: 1rem;
        grid-template-areas:
            "."
            "."
            ".";
    }
}

@media screen and (max-width: 500px) {
    .grid {
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 1rem;
        grid-template-areas:
            "."
            "."
            ".";
    }
}


a:hover {
    cursor: pointer;
}

footer {
    width: 100vw;
    position: fixed;
    top: 90vh;
    border-top: 2px groove var(--dark-grey);
    text-align: center;
    height: 15px;
}

footer #links {
    height: 100%;
    width: 100%;
}

footer #links>a {
    text-decoration: none;
    color: black;
    font-family: 'Nexa Heavy';
    transition: all 200ms;
    width: 10rem;
}

footer #links>a:hover {
    color: #668996;
}