@font-face {
    font-family: SpaceGrotesk;
    src: url(fonts/SpaceGrotesk-VariableFont_wght.ttf);
}
html, body {
    background-color: white;
    font-family: SpaceGrotesk;
    font-size: large;
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: bold;
}

a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
a:hover {
    color: darkgreen;
}

#navbar {
    align-items: center;
    background-color: white;
    display: flex;
    justify-content: space-between;
}

#nav_logo {
    height: 100px;
    width: auto;
}

#nav_links {
    align-items: center;
    display: flex;
    gap: 25px;
}

#quote {
    background-color: darkgreen;
    border-radius: 5px;
    color: white;
    margin-right: 10px;
    padding: 12px;
    transition: background-color 0.3s ease-in-out;
}
#quote:hover {
    background-color: white;
    color: darkgreen;
}

#footer {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    font-size: larger;
    padding: 5px;
}
#footer a{
    color: white;
    text-decoration: underline;
}
#footer a:hover{
    color: darkgreen;
}
#footer span{
    text-align: right;
}