body, html {
    z-index: -1;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: background 1s ease, filter 1s ease;
}

.content {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(100%);
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    color: white;
    box-sizing: border-box;
}

.line p {
    padding-left: 10%;
    padding-right: 10%;
}

.line.visible {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.line.exit {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-100%);
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2rem;
}

p {
    font-size: 1.5rem;
}

a {
    color: #FAD12B
}

.sticky-footer {
    position: fixed;
    right: 48px;
    bottom: 0;
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    background-color: #FAD12B;
}

.sticky-footer b {
    height: 48px;
    line-height: 48px;
    color: white;
}

.sticky-footer img {
    position: fixed;
    right: 0;
    width: 48px;
    height: 48px;
    background: #90ACC7;
}
