@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap');

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikLight.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikMedium.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}


:root {
    --primary-color: #0018a8;
    --primary-color-rgb: 0, 0, 255;
    --secondary-color: #e5e5ff;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #34495e;
    --text-color: #221E20;
    --text-light: #a4ace0;
    --alert-strong: #DE7171;
    --alert-soft: #FFE5E5;
}


h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin: 0.5rem 0;
}

* {
    box-sizing: border-box;
}

.color-primary {
    color: var(--primary-color);
}

.text-strong {
    font-weight: 700;
}

.text-xl {
    font-size: 2rem;
}

.text-s {
    font-size: 0.7rem;
}

@media (orientation: landscape) {
    @media (max-height: 599px) {
        html {
            font-size: 1.8vw;
        }
    }

    @media (min-height: 599px) {
        html {
            font-size: 1.8vh;
        }
    }

}

@media (orientation: portrait) {
    @media (max-width: 599px) {
        html {
            font-size: 1.8vh;
        }
    }

    @media (min-width: 599px) {
        html {
            font-size: 1.8vw;
        }
    }
}

body {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-family: 'Graphik', sans-serif;
}


.header {
    background: white;
    height: 5rem;
    padding: 1rem;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
    -webkit-box-shadow: 0px 0 2rem -0.3rem rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0 2rem -0.3rem rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0 2rem -0.3rem rgba(0, 0, 0, 0.75);
}

.logo {
    object-fit: contain;
    max-width: 15rem;
    height: 100%;
}

.corus-logo {
    max-width: 8rem;
}

.toLanding {
    cursor: pointer;
}