body {
    
    background-color: #002f52;
}
#background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    font-family: 'Source Sans Pro', 'Arial', sans-serif;
    color: white;
    z-index: -2;
}
#background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.6;
    filter: blur(8px) brightness(0.4);
}
#foreground {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 0 4rem 0;
    box-sizing: border-box;
    align-items: center;
}
#welcome-box {
    padding: 1rem 1.4rem 1.4rem 1.4rem;
    width: fit-content;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 0px 15px rgba(0,0,0,.15);
    border: 1px solid white;
    color: white;
    font-size: 1.05rem;
}
#welcome-box a {
    color: white;
    text-decoration: underline;
    white-space: nowrap;
}
#continue-button {
    background-color: #fff1;
    border-radius: 5rem;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.1s ease-in-out;
    padding: 0.8rem 1.2rem 0.8rem 1.4rem;
    border: 1px solid #fff8;
    display: flex;
    align-items: center;
    gap: 1rem;
}
#continue-button span {
    margin-top: -2px;
}
#continue-button:hover {
    background-color: #fff4;
}
#continue-button.clicked {
    background-color: #fff6;
}
#horizontal-logo {
    width: 14rem;
    margin: 1rem 0 1rem 0;
}
#demo-image {
    width: 100%;
    display: flex;
    justify-content: center;
}
h1 {
    font-weight: 200;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.2em;
    margin: 0;
    text-shadow: 0 1px 1px rgba(0,0,0,.1);
}
h1 b {
    font-weight: 700;
    font-size: 1.4em;
}

#continue-button img {
    width: 1.4rem;
    object-fit: contain;
    opacity: 0.9;
}

#support-button {
    position: absolute;
    top: 0.4rem;
    right: 0.7rem;
    font-weight: 200;
    cursor: pointer;
    z-index: 5;
    color: white;
}
#support-button:hover {
    text-decoration: underline;
}