/**------------------------\
|    Christopher Kelly     |
|    s3544232 | RMIT       |
|   W3Schools Validated    |
|------------------------**\

/** Global **/

*
{
    padding: 0;
    margin: 0;
}

body
{
    margin: 0;
    font-family: 'Maven Pro', sans-serif !important;
    background-color: #fff;
}

.wrap
{
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.right
{
    float: right;
    margin-top: 5px;
}

h1
{
    font-family: 'Barrio', cursive;
}

.accent
{
    color: red;
    font-family: 'Barrio', cursive;
}

/** Global Nav **/

.nav
{
    background-color: #333;
    overflow: auto;
    top: 0;
    padding: 20px 0px;
}

.nav .accent
{
    display: inline;
}

ul
{
    list-style-type: none;
    padding-left: 20px;
    padding-right: 40px;
}

li
{
    float: left;
}

li a
{
    display: block;
    text-decoration: none;
    color: #FFF;
    padding-left: 10px;
    padding-right: 10px;
}

li a:hover
{
    color: green;
}

.nav .title
{
    font-family: 'Barrio', cursive;
    font-size: 20px;
}

/* Home Page - index.html */

.index .header
{
    background-image: url(bg-1.jpg);
    width: 100%;
    min-height: 250px;
    background-size: cover;
    position: relative;
}

.index .header .wrap
{
    font-size: 30px;
    color: #FFC300;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.index .header .wrap h1
{
    padding: 15px 0px;
}

.index .index .header .wrap p
{
    font-weight: bold;
}

.index .main-body .head
{
    text-align: center;
    font-size: 18px;
    margin: 20px 0px;
}

.index .main-body .head h3
{
    font-size: 25px;
    font-weight: bold;
    text-decoration: underline;
    margin: 20px;
}

.index .main-body .head hr
{
    margin: 20px;
}

.index .main-body .head small
{
    color: #A8A8A8;
    font-size: 10px;
}

.index .main-body .link-head
{
    text-align: center;
    text-decoration: underline;
    font-size: 17px;
}

.index .main-body .links
{
    width: 90%;
    height: 200px;
    margin: 20px;
    padding: 20px 20px;
    border: 2px solid #000;
}

.index .main-body .links .logo
{
    width: 25%;
    float: left;
}

.index .main-body .links .alogo
{
    height: 200px;
    width: 200px;
}

.index .main-body .links .text
{
    margin-left: 25%;
}

/* News Page - news.html */

.news .header
{
    background-color: #777;
    width: 100%;
    min-height: 250px;
    background-size: cover;
    position: relative;
}

.news .header .wrap
{
    font-size: 30px;
    color: #FFC300;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.news table
{
    width: 90%;
    height: auto;
}

.news table th
{
    padding: 10px;
}

.news table td
{
    padding: 10px 20px;
}

/* Global buttons */

.button
{
    border: none;
    height: 40px;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    background-color: #1E1E24;
    color: #FFF;
}

.button:hover
{
    background-color: #434351;
}

/* Global Footer */

footer
{
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 10px;
}

footer a
{
    color: #aaa;
}
