@import url('https://fonts.googleapis.com/css?family=Nunito:300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext');

*, *:after, *:before {
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    text-align: center;
}

h1, p, span {
    padding: 0;
    margin: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 24px;
}

h1 {
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #fff;
}

span {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

p {
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

a, a:hover, a:visited {
    text-decoration: none;
}

html, body {
    min-width: 300px;
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

div#background {
    background: url('bg.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position-y: -58px;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 0;
    transform: scale(1.04);
    filter: blur(3px);
}

div#background:after {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #01c26e), color-stop(30%, #3498db), color-stop(80%, #a759b6), color-stop(90%, #c03f31));
    background: -webkit-linear-gradient(80deg, #01c26e 0%, #3498db 30%, #a759b6 80%, #c03f31 90%);
    background: -o-linear-gradient(80deg, #01c26e 0%, #3498db 30%, #a759b6 80%, #c03f31 90%);
    background: -ms-linear-gradient(80deg, #01c26e 0%, #3498db 30%, #a759b6 80%, #c03f31 90%);
    background: linear-gradient(80deg, #01c26e 0%, #3498db 30%, #a759b6 80%, #c03f31 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#01c26e', endColorstr='#16a085', GradientType=1);
    opacity: .7;
    z-index: -1;
}

div#main {
    width: 90%;
    max-width: 640px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

a {
    width: 240px;
    font-size: 21px;
    min-width: 150px;
    display: inline-block;
    margin: 10px;
    padding: 10px;
    vertical-align: middle;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;

}

a:hover {
    transform: perspective(1px) scale(1.04);
    background-color: rgba(255, 255, 255, 0.3);
}

a:focus, a:active {
    transform: perspective(1px) scale(1.02);
}
a, a:hover, a:active, a:focus {
    -webkit-transition: transform 200ms ease, background-color 200ms ease;
    transition: transform 200ms ease, background-color 200ms ease;
}

@media only screen and (max-width: 1280px) {
    div#background {
        background-position: center center!important;
    }
}

@media only screen and (max-width : 768px) {

    h1 {
        font-size: 45px;
        margin-bottom: 40px;
    }

    p, span {
        font-size: 21px;
    }

    p {
        margin-bottom: 40px;
    }

    div#main {
        max-width: 550px;
    }

    a {
        border-width: 2px;
        font-size: 16px;
    }
}

@media only screen and (max-width : 480px) {

    div#background {
        background-position: center center!important;
        filter: blur(2px);
    }

    h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    p, span {
        font-size: 19px;
    }

    p {
        margin-bottom: 30px;
    }

    div#main {
        max-width: 550px;
    }

    a {
        border-width: 2px;
        font-size: 16px;
    }

}

