/*
    Web Security Page
    Author: Shawn Miller
*/

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #050505;
    background-image: url("../website1-background.png");
    background-repeat: repeat;
    margin: 0px;
}

#wrapper {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #2E2E2E;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

header {
    background-color: #111111;
    color: #D6B3FF;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #2A2A2A;
}

header h1 {
    margin: 0px;
    letter-spacing: 2px;
    font-size: 2.5em;
}

nav {
    font-weight: bold;
    font-size: 1.05em;
    background-color: #181818;
    text-align: center;
    border-bottom: 1px solid #2A2A2A;
}

nav ul {
    margin: 0px;
    padding: 0px;
}

nav li {
    display: inline-block;
}

nav a {
    text-decoration: none;
    padding: 14px 22px;
    display: block;
    width: 170px;
    color: #EAEAEA;
    transition: 0.25s;
}

nav a:hover {
    background-color: #242424;
    color: #D6B3FF;
}

main {
    background-color: #1E1E1E;
    color: #F2F2F2;
    padding: 2.5em;
    line-height: 1.7;
}

main h2 {
    color: #D6B3FF;
    margin-top: 0px;
    margin-bottom: 20px;
}

main h3 {
    color: #D6B3FF;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    background-color: #262626;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333333;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 25px;
    background-color: #181818;
}

th {
    background-color: #232323;
    color: #D6B3FF;
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #3A3A3A;
}

td {
    padding: 12px;
    border-bottom: 1px solid #303030;
    vertical-align: top;
}

tr:nth-child(odd) {
    background-color: #222222;
}

table a {
    color: #C9A8F9;
    text-decoration: none;
    font-weight: bold;
}

table a:hover {
    color: #FFFFFF;
}

footer {
    background-color: #111111;
    color: #BEBEBE;
    text-align: center;
    font-style: italic;
    padding: 1em;
    border-top: 1px solid #2A2A2A;
}