/* ======================= */
/* BASIC STYLES */
/* ======================= */

html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0px;
    font-family: Arial, sans-serif;
    background-color: #405952;
    color: #1d2c28;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a:link,
a:visited {
    color: #1d2c28;
}

a:hover,
a:active {
    background-color: #314d45;
}

div.a {
    font-size: 130%;
}

div.b {
    font-size: 120%;
}

div.c {
    font-size: 150%;
}

/* ======================= */
/* HEADER */
/* ======================= */

header {
    text-align: center;
    padding: 10px 0;
    background-color: #405952;
}

header h1 {
    font-size: 2rem;
}

/* ======================= */
/* MAIN CONTAINER */
/* ======================= */

.container {
    display: flex;
    flex: 1;
    /* Take up remaining vertical space */
    width: 70%;
    max-width: 1920px;
    margin: 10px auto;
    background-color: #C1D2BF;
    padding: 0px;
}

@media screen and (max-width: 600px) {
    .container {
        display: flex;
        flex: 1;
        /* Take up remaining vertical space */
        width: 100%;
        max-width: 1920px;
        margin: auto;
        background-color: #C1D2BF;/
    }
}

.content {
    flex: 1;
    /* Take up remaining horizontal space */
    padding: 30px;
    background-color: #C1D2BF;

}

p.ex1 {
    margin-left: 20px;
    margin-right: 40px;
}

/* ======================= */
/* SIDEBAR WITH NAVIGATION */
/* ======================= */

.sidebar {
    width: 13%;
    background-color: #4C7352;
    margin-left: auto;
}

.sidebar h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-left: auto;
}

.sidebar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    transition: 0.5s ease;
}

.sidebar a:link,
.sidebar a:visited,
.dropdown-btn {
    display: block;
    margin: auto;
    width: 100%;
    background-color: #4e8055;
    color: #172420;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border: none;
    box-sizing: border-box;
    /*Disinclude padding from element size, does not work on margin*/
}

/* Add an active class to the active dropdown button */
.active {
    background-color: #5aa354;
    color: #172420;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
}

.dropdown-container a:link,
.dropdown-container a:visited {
    background: #70be69;
    font-size: 12px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
}

/* Tools & Skills style boxes */
.tool-tag {
    display: inline-block;
    background-color: #a5bda3;
    /* Light blue tag background */
    color: #172420;
    /* Dark blue text color */
    border-radius: 5px;
    padding: 8px 12px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ======================= */
/* FOOTER */
/* ======================= */

footer {
    text-align: center;
    padding: 5px 8px;
    font-size: .9em;
}