@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    max-height: 100%;
}

#container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 40px 1fr;
    row-gap: 10px;
    height: 100vh;
    max-height: 100%;
}

nav {
    display: flex;
    justify-content: left;
    align-items: center;
    vertical-align: middle;
    background-color: #0066FF;
    background: linear-gradient(to right, #0066FF, #00CCFF);
    color: white;
    padding: 6px 15px;
}

nav .title {
    font-size: 1.2rem;
    font-weight: bold;
    font-variant: small-caps;
}

a.title {
    color: white;
    text-decoration: none;
}

#tos {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.5;
}

footer {
    font-size: 0.7rem;
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}