body {
    overflow: hidden;
    background-color: #000000;
    font-family: 'Roboto', serif;
    font-size: 12px;
}

svg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: black;
}

.content {
    position: relative;
}

.call-to-action {
    z-index: 2;
    position: absolute;
    width: 100%;
    padding: 20px;
    background: #fff;
    border: solid 2px #333;
    border-radius: 20px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,1);
    text-align: center;
  color: #332D31;
    max-width: 750px;
    left: 50%; 
    top: 15%;
    transform: translateX(-50%);
}

.call-to-action p {
    font-size: 2em;
    font-style: italic;
    margin: 0.5em auto 0;s
}

.call-to-action a {
    display: inline-block;
    padding: 20px 20px;
    margin: 20px auto;
    color: #ffffff;
    font-size: 3em;
    font-weight: 700;
    text-decoration: none;
    background: #73B21A;
    border-radius: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.footer {
    display: block;
    position: relative;
    color: black;
    font-weight: bold;
}

.footer a {
    color: #73B21A;
    font-size: 1.33em;
    background: transparent;
    font-weight: normal;
    text-shadow: none;
    font-weight: bold;
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

.footer span {
    vertical-align: middle;
    display: inline-block;
}

.source-frame {
    border: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    filter: blur(8px);
}

.prevent-click {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}

@media screen and (max-width: 767px) {
    .call-to-action {
        width: 80% !important;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 1.5em;
    }

    img {
        width: 20%;
    }

    .call-to-action p {
        font-size: 1.3em;
    }

    .call-to-action a {
        padding: 14px 30px;
        font-size: 1.5em;
    }

    .footer a {
        font-size: 1em;
        padding: 0 8px;
    }
}