@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

header {
    width: 100%;
    height: 120px;
    background-color: #141414;
    display: flex;
    align-items: center;
    font-weight: 300;
}

body {
    background-color: #01050c;
    color: #ffffff;
    min-height: 100vh;
}

footer {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    background-color: rgba(14, 51, 114, 0.1);
}

.site-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}


.site-section > a {
    all: unset;
    cursor: pointer;
    font-size: 30px;
    margin: 0;
    transition: 0.25s;
}

.site-section > a:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    header {
        height: 80px;
    }

    footer {
        font-size: 16px;
    }

    .site-section > a {
        font-size: 24px;
    }
    
}