/* CSS Document */

body {
    background: rgb(255, 255, 255);
    padding: 0;
    margin: 0;
    color: rgb(0, 0, 0);
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
}

.container {
    width: 90%;
    background-color: rgb(245, 244, 242);
    margin: auto;
}

.main {
    background: rgb(255, 255, 255);
    min-height: 450px;
}

.aside-left {
    min-width: 60%;
    min-height: 450px;
    background-color: rgb(255, 255, 255);
    float: left;
    padding: 1%;
    box-sizing: border-box;
}

.aside-left-alt {
    min-width: 60%;
    min-height: 450px;
    background-color: rgb(255, 255, 255);
    float: left;
    padding: 1%;
    box-sizing: border-box;
}

.aside-right {
    min-width: 40%;
    min-height: 450px;
    background-color: rgb(126, 0, 25);
    float: left;
    padding: 1%;
    box-sizing: border-box;
    color: #ffffff;
}

.aside-right-alt {
    min-width: 40%;
    min-height: 450px;
    background-color: rgb(126, 0, 25);
    float: left;
    padding: 1%;
    box-sizing: border-box;
    color: #ffffff;
}

.row {
    padding: 10px;
    background: rgb(230, 229, 225);
    display: flex;
    gap: 2%;
    justify-content: center;
}

.column {
    min-width: 30%;
    min-height: 200px;
    background: rgb(37, 42, 54);
    color: #ffffff;
    padding: 2%;
    box-sizing: border-box;
    /*Use border-radius: for rounded corners*/
}

.navi {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 12%;
    list-style: none;
    min-height: 100px;
}

a:link,
a:visited {
    text-decoration: none;
    font-weight: 600;
    color:rgb(126, 0, 25)
}

a:hover {
    text-decoration: none;
    color:crimson
}

footer {
    align-items: center;
    min-height: 100px;
    display: flex;
    justify-content: center;
}

.aside-left > h2 {
    display: flex;
    justify-content: right;
}

.aside-right-alt > h2 {
    display: flex;
    justify-content: right;
}

@media (max-width: 992px) {
    .row {
        display: block;
    }

    .column {
        width: 100%;
        margin: 10px auto;
    }

    .aside-left {
        float: left;
        width: 100%;
        margin: 10px auto;
    }

    .aside-right {
        float: left;
        width: 100%;
        margin: 10px auto;
    }

    .aside-left-alt {
        float: left;
        width: 100%;
        margin: 10px auto;
    }

    .aside-right-alt {
        float: left;
        width: 100%;
        margin: 10px auto;
    }

    .navi {
        display: block;
    }

    .foot {
        display: block;
    }
}