@import url('https://fonts.googleapis.com/css?family=Oswald|Quicksand&display=swap');

body {
    margin: 0;
    cursor: url("small_cursor.png"), auto;
    font-family: 'Quicksand', sans-serif;
}

h1, h2, nav {
    font-family: 'Oswald', sans-serif;
}

/* Header */
.header {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2em;
    text-align: center;
    margin: 0.01vw 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logo {
    width: 10vw;
    margin-right: 20px;
    transition: 1s;
}
 
#logo:hover {
    transform: rotate(-180deg);
}

#banner {
    width: 100vw;
}

/* The Nav Bar */
nav {
    position: sticky;
    top: 0px;
    display: flex;
    justify-content: space-evenly;

    margin-bottom: 1vh;
    width: 100%;
    height: 50px;
}

nav a {
    color: black;
    background-color: rgba(255, 255, 255, 0.7);
    font-family: inherit;

    width: 25vw;

    font-size: 1.2em;
    text-decoration: none;
    text-align: center;
    line-height: 50px;

    transition-duration: 0.3s;
}

nav a:hover {
    font-size: 1.45em;
    cursor: inherit;
}


/* Content */

.section {
    padding: 1vh 5vw;
    font-size: 1em;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
}

.column {
    display: flex;
    flex-flow: column nowrap;
}

#intro-vid {
    display: inline;
    align-self: center;

    margin-left: 50px;
    flex-shrink: 0;
}

#fancy-button {
    height: 50px;
    width: 400px;

    background: rgb(57, 57, 57);
    font-family: inherit;
    color: white;
    font-size: 1em;

    border-style: none;
    border-left-style: solid;
    border-color: #d53369;
    border-width: 10px;
    border-radius: 5px;
}

/*#button-wrapper {
    height: 50px;
    width: 400px;

    align-self: center;

    padding: 5px;
    background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
}*/

#fancy-button:hover {
    background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
}

/* Images */
#trefoildrawing {
    padding-left: 3%;
    width: 25vw;
    max-height: 400px;
}

#tangledrawing {
    padding-right: 3%;
    width: 25vw;
    max-height: 400px;
}