/*
    * Color palette
        * #01161e - ink black
        * #124559 - dark teal
        * #598392 - air force blue
        * #aec3b0 - ash grey
        * #eff6e0 - beige
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
    font-family: "inter";
    background-color: #aec3b0;
}

h1 {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

h2 {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

table,
th,
td,
tr {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px;
}

tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.1);
}

thead {
    background-color: rgba(0, 0, 0, 0.1);
}

.topbar {
    background-color: #598392;
    color: black;
    width: 99%;
    height: 7%;
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    border-radius: 5px;
    border: 1px solid black;
    box-sizing: border-box;
}

.topbar h1 {
    margin: none;
    margin-top: 1%;
    position: relative;
    top: -8px;
}

.content {
    position: absolute;
    top: 8.5%;
    left: 0.3%;
    display: grid;
    width: 99.5%;
    grid-template-columns: 50% 50%;
}

.content div {
    border-radius: 5px;
    border: 1px solid black;
    padding: 1%;
    margin: 0.5% 0.5% 0.5% 0.5%;
    background-color: #6c98a8;
    color: black;
}

.code {
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.15);
    padding: 1px;
    border-radius: 5px;
}

@media (max-width : 600px) {
    .topbar {
        top: 0.5%;
        padding-top: 2.5%;
    }

    .content {
        position: absolute;
        top: 7.6%;
        left: 0.3%;
    }
}