* {
    box-sizing: border-box;
}

a {
    color: #f1f1f1;
}

a:visited {
    color: #f1f1f1;
}

/* Add a gray background color with some padding */
body {
    padding: 20px;
    background: #2e2e2e;
    color: #f1f1f1;
    font-family: Verdana, Geneva, sans-serif;
}

form {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 16px;
}

label {
    grid-column: 1 / 2;
}

input,
button {
    grid-column: 2 / 3;
}

/* Header/Blog Title */
.header {
    padding: 3px;
    font-size: 18px;
    text-align: left;
    background: #3b3b3b;
    border-bottom: 1px solid #cc0000;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
    float: left;
    width: 75%;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 25%;
    padding-left: 20px;
}


/* Add a card effect for articles */
.card {
    background: #3b3b3b;
    padding: 20px;
    margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: left;
    background: #3b3b3b;
    margin-top: 20px;
    font-size: 12px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {
        width: 100%;
        padding: 0;
    }
}


a {
    color:#EEEEEE;
    font-weight:bold;
}

h1 {font-size:1.2em}

h2 {font-size:1.1em}

li {font-size:1.1em}

