html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    background: black;
    font-family: 'Figtree', sans-serif;
    color: white;
    font-weight: 300;
}

.background {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.webp');
    filter: blur(40px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.background::before {
    content: '';
    position: absolute;
    background-color: black;
    opacity: .7;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.content {
    position: absolute;
    left: 0;
    width: calc(100% - 60px);
    overflow: hidden;
    text-align: center;
    padding: 0 30px;
    top: 50%;
    transform: translateY(-50%);
}

.top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.top h1 {
    font-size: 1.4rem;
    padding-top: 1rem;
}

.content h2 {
    font-size: 4rem;
}

.content p {
    margin-top: 8rem;
    margin-bottom: 0;
    line-height: 1.7rem;
}

.content p.link {
    margin-top: 2rem;
}

.content p.link a {
    font-size: 1.5rem;
    color: white;
}