/* Modern Reset */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
}

.container {
    width: 900px;
    margin: 0 auto;
}

button {
	background-color: #2c3e50;
	color: white;
	border: none;
	padding: 10px 30px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	font-size: 16px;
}

/* Header - No Flexbox */
#header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e4e8;
    padding: 20px 0;
    height: 70px;
}

#logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    display: inline-block;
}

#nav {
    float: right;
}

#nav a {
    text-decoration: none;
    color: #666;
    margin-left: 25px;
    line-height: 30px;
    font-size: 14px;
}

/* Hero Section */
#hero {
    padding: 60px 0;
    text-align: center;
}

#hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

#hero p {
    color: #777;
    font-size: 18px;
}

/* Content Card - Using Display Block/Margins */
.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

#site-list {
    list-style: none;
    padding: 0;
}

#site-list li {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

/* Clearfix for the floated nav */
.container:after {
    content: "";
    display: table; /* Note: This is a clearfix hack, not a data table */
    clear: both;
}

.no-dec {
	color: inherit;
	text-decoration: none;
}

.no-line {
	text-decoration: none;
}

.note {
	font-style: italic;
	color: #999;
	margin-bottom: 15px;
	display: block;
}
