/* positions to centre */
div.homebanner{
    text-align: center;
    position: relative;
}

/* importing Hylian text format*/
@font-face {
    font-family: 'triforce';
    src: url('Triforce.ttf');
}

.banner{
    line-height: 140px;
    height: 150px;
    margin-top: 5px;
    margin-bottom: 0;
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.8)),
    url("banner.png");
    border:gold solid;
    box-shadow: 0 4px 40px goldenrod;
    text-shadow: 0 0 4px gold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    color: #ffffff;
    font-family: triforce, sans-serif;
    font-size: 70px; font-weight: 300;
}

/* aligns audio player to the right*/
audio{
    float: right;
}

/* Customizes header 2*/
h2 {
    color: #ffffff;
    font-family: triforce, sans-serif; font-weight: 400;
    line-height: 35px;
    font-size: 30px;
}

/* Sets font style of paragraphs*/
p {
    color: #e0e0d2;
    font-family: 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 25px;
    text-indent: 15px;
    text-align: left;
    margin: 0;
}

/* Sets link style*/
a {
    color: #fe921f;
    text-decoration: underline;
}

/* sets color when hovering over links*/
a:hover {
    color: #ffe0b3
}

/* Sets background design*/
body{
    background: #1a1a1a url("triforce_faded.png");
    background-attachment: fixed;
}

.date {
    background: #fe921f;
    color: #ffffff;
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 12px; font-weight: bold;
    line-height: 12px;
    letter-spacing: 1px;
    margin: 0 0 30px;
    padding: 10px 15px 8px;
    text-transform: uppercase;
}

* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 10px
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
