/* Banner */
#banner {
    background: #222;
    color: #fff;
    margin: 0;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 1s;
}

#banner a {
    color: #fff;
    text-decoration: none;
}

main {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, rgba(255,255,255,0.5) 80%, rgba(255,255,255,1) 100%);
}

.caption {
    padding: 20px;
    border-radius: 3px;
    text-align: center;
}

.caption h1 {
    text-shadow: 0px 0px 10px #000;
    /* -webkit-text-stroke: 0.5px #00b2e2;
    text-stroke: 0.5px #00b2e2; */
}

.caption p {
    font-size: var(--16px);
    padding: 0 10vw;
}

.call-to-action-button {
    cursor: pointer;
    background-color: #00b2e2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-size: var(--16px);
    font-weight: bold;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.30);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.30);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.30);

    transition: all 0.3s;
}

.call-to-action-button:hover {
    cursor: pointer;
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.30);
    -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.30);
    -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.30);
}

.call-to-action-button i {
    margin-right: 10px;
}

.hidden {
    display: none;
}
