@import url('https://fonts.googleapis.com/css?family=Quicksand:400,300,700');

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    font-family: "Quicksand", sans-serif;
    overflow: hidden;
}

#background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    filter: blur(5px);
}

.main {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

#content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: white;
}

.title {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 700;
}

.title span:hover {
    animation: MISSION-HOVER 1.5s infinite alternate ease;
}

@keyframes MISSION-HOVER {
    0%, 100% { font-size: 4rem; color: white; }
    50% { color: #bffcff; letter-spacing: 5px; text-shadow: 0px 0px 30px rgba(191, 252, 255, 1); }
}

#content p {
    color: #e6dbae;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    margin: 20px 0;
}

#content p:last-child {
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    margin-top: 50px;
}

#content p a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in;
}

#content p a:hover {
    color: #fff;
}

section ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

section ul li {
    margin: 0 1rem;
    width: 6rem;
}

.timenumbers {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
}

.timedescription {
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 2px !important;
}