@font-face {
    font-family: 'NotoSans';
    src: url('../fonts/NotoSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

:root {
    --font-NotoSans: 'NotoSans', sans-serif;
    --color-White: #ffffff;
    --color-Secondary: #7CCBF7;
}

html,
body {
    margin: 0;
}

html {
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body {
    min-height: 100vh;
}

/**
*** HOMEPAGE
**/

.homepage {
    height: 100vh;
}

.homepage svg {
    position: relative;
    display: block;
    top: 50%;
    width: auto;
    height: 100%;
    max-height: 90vh;
    transform: translateY(-50%);
    padding: 20px;
    margin: 0 auto;
}

.homepage svg path {
    transition: transform 300ms ease-in-out;
}

a:not(.logo):hover path {
    transform: translateY(-5px);
}
