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

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-color: #e8dbc5ff;
    --background-color: #fff4e9ff;
}

body {
    font-family: "Oswald", sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

#background {
    height: 95vh
}

nav {
    background-color: var(--primary-color);
    color: var(--text-color);
    height: 5vh;
    display: flex;
    align-items: center;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    width: 100%;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
    text-align: center;
}

.links{
    display: flex;
    flex-direction: row;
}

.links a{
    color: var(--text-color);
    font-size: 2.5em;
    margin: 1em;
}

.content h1 {
    font-size: 4rem;
}

.content p {
    font-size: 2rem;
}

