body {
    background-position: center;
    background-color: #1d1d1d;
    overflow: hidden;
    margin: 0px;
}

h2 {
    display: block;
    font-size: 25px;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium';
    overflow: hidden;
    top: 0;
    text-align: center;
    color: #FF4B58;
}

#vantajs {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

#vantajsnet {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.button1 {
    display: inline-block;
    padding: 0.85em 5.5em;
    border: 0.1em solid #FFFFFF;
    margin: 0 0.3em 0.3em 0;
    border-radius: 0.25em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 850;
    color: #FFFFFF;
    text-align: center;
    transition: all 0.5s;
    font-size: 20px;
    background-color: transparent;
}

.button2 {
    display: inline-block;
    padding: 0.85em 5.5em;
    border: 0.1em solid #FFFFFF;
    margin: 0 0.3em 0.3em 0;
    border-radius: 0.25em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 850;
    color: #FF4B58;
    text-align: center;
    transition: all 0.5s;
    font-size: 15px;
    background-color: transparent;
    width: 285px;
    height: 50px;
}

.button1:hover {
    color: #000000;
    background-color: #FFFFFF;
    cursor: pointer;
}

.button2:hover {
    color: #FF4B58;
    background-color: rgba(255, 255, 255, 0.192);
    cursor: pointer;
}

@media all and (max-width:30em) {
    .button1 {
        display: block;
        margin: 0.4em auto;
    }
}

@media all and (max-width:30em) {
    .emailbutton {
        display: block;
        margin: 0.4em auto;
    }
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}