﻿html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.backgroundimage {
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.titlestyle {
    position: relative;
    margin: auto,auto,auto,auto;
    text-align: center;
    font-family: Georgia;
    color: rgba(34,93,138,1);
    text-align: center;
    font-size: 16vh;
    width: 100%;
}

.bodystyle {
    position: relative;
    margin: auto,auto,auto,auto;
    text-align: center;
    font-family: Georgia;
    color: rgba(34,93,138,1);
    text-align: center;
    font-size: 12vh;
    width: 100%;
}

.bodystylesub {
    position: relative;
    margin: auto,auto,auto,auto;
    text-align: center;
    font-family: Georgia;
    color: rgba(34,93,138,1);
    text-align: center;
    font-size: 9vh;
    width: 100%;
}

.thirdstyle {
    font-family: Georgia;
    color: rgba(34,93,138,1);
    font-size: 9vh;
    text-align: center;
}

.thirdsubstyle {
    font-family: Georgia;
    color: rgba(34,93,138,1);
    font-size: 7vh;
    text-align: center;
}

.sectionbackground {
    background-color: rgba(255,255,255,0.5);
    width: 100vw;
}

.fade-in {
    animation: fadeIn ease 2s;
    -webkit-animation: fadeIn ease 2s;
    -moz-animation: fadeIn ease 2s;
    -o-animation: fadeIn ease 2s;
    -ms-animation: fadeIn ease 2s;
}

.fade-insubtitles {
    animation: fadeIn ease 4s;
    -webkit-animation: fadeIn ease 4s;
    -moz-animation: fadeIn ease 4s;
    -o-animation: fadeIn ease 4s;
    -ms-animation: fadeIn ease 4s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    section:nth-child(1) {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    section:nth-child(2) {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    section:nth-child(3) {
        min-height: 100vh;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    section:nth-child(4) {
    }

    section .container {
        margin: 25px;
    }


.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

    .reveal.active {
        transform: translateY(0);
        opacity: 1;
    }


.buttonstyle {
    color: rgba(34,93,138,1);
    background-color: ghostwhite;
    width: 110px;
    height: 25px;
    font-family: Georgia;
    font-size: 14px;
    font-weight: bold;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #050076;
    position: relative;
    z-index: 3;
}

    .buttonstyle:hover {
        border: 1px solid #050076;
        background-color: #b3d9ff;
    }

/*--------------------*/

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    float: right;
    background: #eee;
    border-bottom: 1px solid #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

nav li {
    float: left;
}

nav #login {
    border-right: 1px solid #ddd;
    -moz-box-shadow: 1px 0 0 #fff;
    -webkit-box-shadow: 1px 0 0 #fff;
    box-shadow: 1px 0 0 #fff;
    background: #eee;
}

nav #login-trigger,
nav #signup a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    height: 25px;
    line-height: 25px;
    font-weight: bold;
    padding: 0 8px;
    text-decoration: none;
    color: #444444;
    background: #eeeeee;
}

nav #signup a {
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background: #eeeeee;
}

nav #login-trigger {
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

    nav #login-trigger:hover,
    nav #login .active,
    nav #signup a:hover {
        background: #243747;
        color: #ffffff;
    }

nav #login-content {
    display: none;
    position: absolute;
    top: 24px;
    left: 0;
    z-index: 999;
    background: #ffffff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#b3d9ff), to(#fff));
    background-image: -webkit-linear-gradient(top, #b3d9ff, #fff);
    background-image: -ms-linear-gradient(top, #b3d9ff, #fff);
    background-image: -o-linear-gradient(top, #b3d9ff, #fff);
    background-image: linear-gradient(top, #b3d9ff, #fff);
    padding: 15px;
    -moz-box-shadow: 0 2px 2px -1px rgba(0,0,0,.9);
    -webkit-box-shadow: 0 2px 2px -1px rgba(0,0,0,.9);
    box-shadow: 0 2px 2px -1px rgba(0,0,0,.9);
    -moz-border-radius: 3px 0 3px 3px;
    -webkit-border-radius: 3px 0 3px 3px;
    border-radius: 3px 0 3px 3px;
}

nav li #login-content {
    left: 0;
    width: 280px;
}

/*--------------------*/

#inputs input {
    background: #f1f1f1;
    padding: 6px 5px;
    margin: 0 0 5px 0;
    width: 238px;
    border: 1px solid #ccc;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 1px 1px #ccc inset;
    -webkit-box-shadow: 0 1px 1px #ccc inset;
    box-shadow: 0 1px 1px #ccc inset;
}

    #inputs input:focus {
        background-color: #fff;
        border-color: #8595a6;
        outline: none;
        -moz-box-shadow: 0 0 0 1px #8595a6 inset;
        -webkit-box-shadow: 0 0 0 1px #8595a6 inset;
        box-shadow: 0 0 0 1px #8595a6 inset;
    }

/*--------------------*/

#login #actions {
    margin: 10px 0 0 0;
}

#login .submit {
    background-color: #3F80EC;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#4c606b), to(#96b0a5));
    background-image: -webkit-linear-gradient(top, #4c606b, #96b0a5);
    background-image: -moz-linear-gradient(top, #4c606b, #96b0a5);
    background-image: -ms-linear-gradient(top, #4c606b, #96b0a5);
    background-image: -o-linear-gradient(top, #4c606b, #96b0a5);
    background-image: linear-gradient(top, #4c606b, #96b0a5);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
    border: 1px solid #7e1515;
    float: left;
    height: 30px;
    padding: 0;
    width: 100px;
    cursor: pointer;
    font: bold 14px Arial, Helvetica;
    color: #fff;
}

    #login .submit:hover,
    #login .submit:focus {
        background-color: #e97171;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#4c606b), to(#f06015));
        background-image: -webkit-linear-gradient(top, #4c606b, #f06015);
        background-image: -moz-linear-gradient(top, #4c606b, #f06015);
        background-image: -ms-linear-gradient(top, #4c606b, #f06015);
        background-image: -o-linear-gradient(top, #4c606b, #f06015);
        background-image: linear-gradient(top, #4c606b, #f06015);
    }

    #login .submit:active {
        outline: none;
        -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
        -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
    }

    #login .submit::-moz-focus-inner {
        border: none;
    }

#login label {
    float: right;
    line-height: 30px;
}

    #login label input {
        position: relative;
        top: 2px;
        right: 2px;
    }
