.parent {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 2 / 4 / 3; }
.div2 { grid-area: 1 / 3 / 2 / 6; }
.div3 { grid-area: 2 / 3 / 4 / 6; }

body:not(.page) {
  background-image: url('images/background1.jpg');
  background-size: cover;
  background-attachment: fixed;
  
}

.page {
    background-color: rgba (9, 0, 0, 0.8);
    border-top: 10px solid black;
    padding: 12px;
}

.wrapper {
    border: 6px ridge;
    width: 729px;
    margin-left: 20px;
    /* If you want the box to be centered, turn this line on instead */
    /* margin: auto; */
    margin-top: 20px;
    box-sizing: border-box;
}

.header {
    border-bottom: 6px ridge;
    height: 160px;
    box-sizing: border-box;
    background-image: url('img/bananner.gif');
    position: relative;
}

.main {
    display: flex;
}
.side {
    border-right: 6px ridge;
    width: 200px;
    padding: 12px;
    box-sizing: border-box;
    background: #172872;
    color: white;
    min-height: 760px;
}

.content {
    flex-grow: 1;
    background: #FFF;
}

.button {
    display: block;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 17px;
    background-image: url('img/button.png');
    border-radius: 5px;
    color: #FFF;
    text-decoration: none;
    text-shadow: 0 0 3px #FFF;
    letter-spacing: 1px;
    font-family: serif;
}

.button:hover {
    background-image: url('img/button2.png');
}

.title {
    padding-top: 20px;
    padding-left: 20px;
}

a {
    color: black;
}

table {
    border-collapse: collapse;
}

th, td {
    padding: 6px 12px;
    vertical-align: top;
    border: 1px solid #000;
}

th {
    background: black;
    color: #ff0097;
}

.width-50 {
    width: 50%;
}