/* Main stylesheet */

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #4A90E2;
    height: 60px;
    flex-shrink: 0;
}

header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    color: white;
}

nav {
    background-color: #357ABD;
    height: 30px;
}

nav li {
    display: inline-block;
    list-style: none;
    height: 30px;
}

nav a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    color: white;
}

#content {
    display: flex;
    flex: auto;
    flex-direction: row;
}

main {
    width: 70%;
    box-sizing: border-box;
    padding: 20px;
}

aside {
    width: 30%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #E3E3E3;
}

footer {
    background: #4A90E2;
    color: white;
    font-size: 85%;
    flex-shrink: 0;
    text-align: center;
    padding: 10px;
}

h1 {
    color: #222;
    font-size: 140%;
    margin-bottom: 20px;
}

p {
    margin-bottom: 12px;
}
