/* Make sure header and body take up all space on screen. */
header, body {
    margin: 0;
}

/* Header */
header {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    padding: 60px;
    background-color: #00aeff;
}

/* Navigation Bar */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
}

ul li {
    float: left;
}

ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    background-color: #000000; 
}

ul li a:hover {
    background-color: #00aeff;
}

.circle-list {
    list-style-type: square;
    background-color: #ffffff;
    overflow: visible;
    margin: 15px;
}

/* Setting up a 2-column page */
.content-row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    padding: 10px;
}

.side {
    background-color: #f1f1f1;
    flex: 1;
}

.main {
    flex: 3;
}

/* About me */
#content-header {
    font-weight: bold;
    font-size: 30px;
}

#column-header {
    font-weight: bold;
    font-size: 25px;
}

#contact-form {
    text-align: center;
}

/* Setting up 2 column form */
.contact-row {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}


.left {
    background-color: #f1f1f1;
    flex: 1;
}

.right {
    background-color: #ff0000;
    flex: 1;
}

/* Footer */
footer {
    background-color: #00aeff;
    text-align: left;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
}