
/* ----- General ----- */
html {
    height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    background: url(../images/background.jpg) 50% 50% no-repeat;
    background-size: cover;
    font-family: 'Cinzel Decorative', cursive;
}

/* ----- Navigation Bar ----- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
}

nav .nav-logo {
    float: left;
    padding: 14px 16px;
    height: 30px;
    width: 234px;
}

nav .nav-menu {
    float: right;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 30px;
}

/* ----- Sidenav ----- */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 42;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* ----- Section ----- */

section {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    text-align: center;
}


/* ----- Footer ----- */
footer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
}

footer a {
    text-decoration: none;
}


/* ----- Buttons ----- */

.button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 1em;
    padding: 10px 32px;
    cursor: pointer;
    display: inline-block;
}

.shadow {
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
}

/* ----- Animations ----- */

.animation-fadeInTop {
    animation: fadeInTop 2.5s;
}

.animation-fadeIn {
    animation: fadeIn 2s;
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}