body {
}
* {
    box-sizing: border-box;
}

body {
  margin: 0;
}

h1 {
font-family: Dotum, Bodoni MT Condesed;
}

body {
font-family: Tw Cen MT Condensed, sans-serif;
font-size: 20px;
}


.header { 
background-color: #ffc1c1;
padding: 20px;
text-align: center;
}


/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #ee0000;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	font-size: 23px;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */
@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}



