
body {
    /* Background pattern from subtlepatterns.com */
    background-image: url("img/hexellence.png");
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #111;
}

a:link {
    color: #36b03c;
    text-decoration: none;
}
a:visited {
    color: #36b03c;
}
a:active {
    color: #36b03c;
}
a:hover {
    color: #37b93d;
    text-decoration: underline;
}

h1 {
    font-family: 'Lobster', cursive;
    font-size: 64px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 3px;
    margin-top: 0px;
    margin-bottom: 20px;
}

p {
    text-align: center;
}


.container{
    width: 400px;
    background-color: #f9f9f9;
    padding: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    box-shadow: 3px 3px 30px 5px #cccccc;
}

input[type="email"], input[type="password"], input[type="text"]{
    box-sizing: border-box;
    width: 300px;
    background-color: #efefef;
    color: #666;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 20px;
    padding: 10px;
    margin: 10px 0;
    outline: none;
}
input[type="email"]:focus, input[type="password"]:focus, input[type="text"]:focus{
    box-shadow: 0px 0px 10px 2px #cccccc;
    border: 2px solid #a5cda5;
    background-color: #e9f3e9;
    color: #428c42;
}
input[type="submit"]{
    background-color: #36b03c;
    font-size: 20px;
    width: 300px;
    padding: 15px 10px;
    margin-top: 10px;
    color: white;
    border: none;
    border-radius: 5px;
    letter-spacing: 2px;
    cursor: pointer;
    outline: none;
}
input[type="submit"]:focus{
    box-shadow: 0px 0px 15px 5px #cccccc;
}
input[type="submit"]:hover{
    background-color: #37b93d;
}
input::placeholder{
    color: #428c42;
}
input:focus::placeholder{
    color: #a5cda5;
}

table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th{
    background-color: #36b03c;
    color: white;
    font-size: 20px;
    padding: 10px;
}
td{
    background-color: #f9f9f9;
    color: #666;
    font-size: 18px;
    padding: 10px;
    text-align: center;
}
