/* Main CSS stylesheet for Kozu.me as a whole. This CSS file is to be used
 * in every single page */

body {
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.content {
    width: 100;

    position: fixed;
    top: 60px;
    margin: 0 auto;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
}

.article {
    max-width: 360px;
    height: fit-content;
    margin-top: 10px;

    background-color: #352b1e;
    border: 5px solid #c87f0e;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
    font-size: large;
}

.choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-family: scientifica;
}

.choice a {
    text-decoration: none;
}

.aside {
    margin-left: 10px;
}

.navbar a:active, a:hover {
    background-color: #bc9063;
}
