* {
    box-sizing: border-box;
}

body {
    background:linear-gradient(#d6daf0 3em,#eef2ff 1500px);
    color:#000000;
    font-family:arial,helvetica,sans-serif;
    font-size:12pt;
    margin: 2.5%;
}

a {
    color: #34345c;
}
a:hover {
    color: red;
}

.boards, .about {
    width: 100%;
}
.boards {
    float: left;
}
.about {
    float: right;
}

@media only screen and (min-width: 768px) {
    .boards, .about {
        width: 47.5%;
    }
}

.textbox {
    background: #9988ee;
    border: 1px solid black;
    margin-bottom: 12px;
}
.textbox-content {
    background: white;
    padding: 5px;
    text-align: center;
}

table {
    width: 100%;
}
table, td, th {
    border: 1px solid black;
    border-collapse: collapse;
}
th {
    background-color: #9988ee;
    margin-left: 5px;
    margin-right: 5px;
}
td {
    background-color: white;
    margin-left: 5px;
    text-align: left;
}

.site-title {
    font-size: 24px;
    vertical-align: top;
}