/* Core resetting for primitive browsers */
body {
    background-color: #0b0c10;
    color: #c5c6c7;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 12px;
    text-align: center;
}

/* Constraining the wrapper to prevent any horizontal scroll overflow */
#container {
    width: 440px;
    margin: 0 auto;
    text-align: left;
    padding-top: 5px;
}

/* Typography styles matching old school directories */
h1 {
    font-size: 16px;
    color: #66fcf1;
    margin: 5px 0 2px 0;
    text-align: center;
}

.subtitle {
    font-size: 11px;
    color: #45f3ff;
    margin: 0 0 5px 0;
    text-align: center;
}

hr {
    border: 0;
    height: 1px;
    background: #1f2833;
    margin: 8px 0;
}

/* The Grid System: Built using tables to prevent CSS layout engine crashes */
.menu-grid {
    width: 100%;
    margin: 0 auto;
}

.menu-grid td {
    width: 50%;
}

/* Block style anchor buttons that look like application icons */
.menu-item {
    display: block;
    background-color: #1f2833;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 5px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #45a29e;
}

/* Basic hover states that work with the PSP cursor selector */
.menu-item:hover {
    background-color: #66fcf1;
    color: #0b0c10;
}

.footer {
    text-align: center;
    font-size: 10px;
    color: #1f2833;
}