* {
    margin: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
html, body {
    height: 100%;
}
body {
    background: radial-gradient(58.31% 51.75% at 63.33% 50%, #030D17 0%, #0A0A0A 100%);
    color: #A3A3A3;
    font-family: "Mozilla Text", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}
a {
    color: #fff;
    text-decoration: underline;
    -webkit-text-underline-position: under;
    -ms-text-underline-position: below;
    text-underline-position: under; 
}
a:hover {
    text-decoration: dashed;
}


.main {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    flex: 1 0 auto;
    gap: 3.5rem;
}
@media (min-width: 992px) {
    .main {
        padding: 2rem 4rem;
    }
}
@media (min-width: 1200px) {
    .main {
        padding: 2rem 12rem;
    }
}
.content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
@media (min-width: 768px) {
    .content {
        justify-content: center;
    }
}
.icon-svg {
    height: auto;
    display: block;
}

.outer-container {
    display: flex;
    max-width: 560px;
}

.centered-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.heading {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 400;
    margin-top: 1.25rem;
    color: #fff;
}
@media (min-width: 768px) {
    .heading {
        font-size: 3rem;
    }
}
.paragraph {
    margin-bottom: 1.25rem;
}

.dashed-box {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: .75rem 1.5rem;
}

.footer {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 1.5rem;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-right a {
    display: flex;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    z-index: -1;
    mix-blend-mode: screen;
    width: 100%;
    height: 100%;
    transform:scale(1) translate(0, 15rem);
}
@media (min-width: 768px) {
    .bg-video {
        min-width: 100%;
        min-height: 100%;
        transform: scale(1.8) translate(0, 0);
    }
}