@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&family=Tangerine&display=swap');

body {
    margin: 0px 0px 0px 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Raleway', sans-serif;
}

main {
    background: url('background.png');
    flex-grow: 1;
    padding: 25px 25px 25px 25px;
    color: #210;
}

h1, h2, h3 {
    font-family: 'Tangerine', cursive;
}

h1 {
    text-align: center;
    font-size: 3em;
}

h2 {
    font-size: 2.4em;
}

p {
    font-size: 1.2em;
}

.bigger {
    font-size: 1.5em;
}

#main {
    display: flex;
    flex-direction: row;
}

#home {
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nav {
    flex-grow: 0;
    min-width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#search {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.border {
    border-style: solid;
    border-width: 2px;
    border-radius: 7px;
}

a {
    font-size: 1.5em;
    color: inherit;
    text-decoration: none;
}

a.inline {
    font-size: 1em;
    text-decoration: underline;
}

.tag-container {
    border-style: solid;
    border-width: 1px;
    border-radius: 0.2em;
}

a.tag {
    font-size: 1em;
}

#home div, #search div {
    padding: 0.5em 1em;
    text-align: center;
}

#text {
    flex-grow: 1;
    padding: 0em 1em;
}

