@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
}

/* Header */

/* Global navbar properties*/
header {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    /* background-color: #ff0000; */
}

/* Nav bar properties */
header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-family: 'Lato', sans-serif;
    /* background-color: #00d9ff; */
}

header nav a {
    color: black;
    text-decoration: none;
}

header nav a:hover {
    text-shadow: 0px 0px 1px black;
}

header nav a.discover {
    color: #b6866f;
    border: 1px solid #b6866f;
    padding: 0.8vw 1.6vw;
}

header h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
}

header h1:hover {
    text-shadow: 0px 0px 2px black;
}

header a {
    color: black;
    text-decoration: none;
}

header a:hover {
    color: black;
    text-decoration: none;
}

@media screen and (max-width: 1300px) {

    /* TODO: responsive small screen */
    header {
        height: 80px;
        padding-top: 10px;
        padding-left: 80px;
        padding-right: 80px;
    }

    header h1 {
        font-size: 10px;
        /* background-color: darkgreen; */
    }

    header nav {
        width: 30vw;
        height: 3vh;
        font-size: 1.5em;
    }

}

@media screen and (min-width: 1300px) {
    header {
        height: 17vh;
        padding-left: 15vw;
        padding-right: 15vw;
    }

    header h1 {
        font-size: 3vw;
    }

    header nav {
        width: 34vw;
        height: 3vh;
        font-size: 1.3vw;
    }
}