﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
    background: black;
    height: 100%;
    margin: 0;
    padding: 0;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

footer {
    display: block;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 10px;
    font-size: 0.8em;
    color: white;
    opacity: 0.5;
}

main {
    height: 100%;
}

a {
    color: #eee;
    text-decoration: none;
}

    a:visited {
        color: #eee;
    }

    a:hover {
        color: #fff;
    }

section#home {
    height: 100%;
    background-image: -ms-linear-gradient(top left, #9AC2B7 0%, #B9AE80 100%);
    background-image: -moz-linear-gradient(top left, #9AC2B7 0%, #B9AE80 100%);
    background-image: -o-linear-gradient(top left, #9AC2B7 0%, #B9AE80 100%);
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #9AC2B7), color-stop(1, #B9AE80));
    background-image: -webkit-linear-gradient(top left, #9AC2B7 0%, #B9AE80 100%);
    background-image: linear-gradient(to bottom right, #9AC2B7 0%, #B9AE80 100%);
}
