
@charset "UTF-8";

/*
    Global styles
*/
:root {
    --fdc-orange: #f97b22;
    --fdc-orange-dark: #ce661b;
    --fdc-green: #9ca777;
    --fdc-blue: #6689a1;
    --fdc-blue-light: #6689a11c;
    --fdc-black: #1b1a17;
    --fdc-gray: #eeeeee;
    --body-white: #fff;
    --body-font-family: 'Lato', sans-serif;
    --body-font-weight: 400;
}

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    color: var(--fdc-black);
    background-color: var(--body-white);
}

/* 
    Header grid layout
*/
.header-layout {
    display: grid;
    grid-template-columns: [first] 18.5% [l-margin] 18.5% [picture] 2% [mid] auto [r-margin] 18.5% [last];
    grid-template-rows: [r-top] 60% [r-mid] 40% [r-bottom];
}

.header-img {
    grid-column: l-margin / picture;
    grid-row: r-top / r-bottom;
    align-self: center;
    width: 100%;
}

.header-name {
    grid-column: mid / r-margin;
    grid-row: r-top / r-mid;
    align-self: flex-end;
    font-size: 6.5cqw;
    font-weight: 700;
}

.header-hyphen {
    grid-column: mid / r-margin;
    grid-row: r-mid / r-bottom;
    justify-self: start;
    background-color: var(--fdc-orange);
    width: 8cqw;
    height: 0.8cqw;
    margin-top: 1.3cqw;
}

.header-title {
    grid-column: mid / r-margin;
    grid-row: r-mid / r-bottom;
    justify-self: end;
    font-size: 2.5cqw;
    font-weight: 300;
}


/* 
    Links layout
*/

.links-layout {
    display: flex;
    flex-direction: column;
    margin-left: 30vw;
    margin-right: 30vw;
    margin-top: 7vh;
}

.link-container {
    display: flex;
    margin-bottom: 1.5cqw;
    align-items: center;
    border-style: solid;
    border-width: 0.25cqw;
    border-color: var(--fdc-blue);
    border-radius: 10px;
    text-decoration: none;
    color: var(--fdc-black);
}

.link-container:hover {
    background-color: var(--fdc-blue-light);
}

.link-img {
    width: 3cqw;
    margin: 0.5cqw;
}

.link-text {
    flex-grow: 6;
    margin-right: 0.5cqw;
    text-align: center;
    font-size: 2cqw;
}