@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: black;
    color: white;
}

.mx-center {
    text-align: center;
}

a {
    text-decoration: none;
    color: white;
}

.cntnr {
    background-color: white;
    color: black;
    padding: 1.14em 2.14em;
    border-radius: 8px;
}

.btn {
    padding: 10px 52px;
    background-color: blueviolet;
    color: white;
    border-radius: 6px;
}

.cntnr-v {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mt-3 {
    margin-top: 3em;
}

@media only screen and (min-width: 600px) {
    .centered {
        margin-left: 10%;
        margin-right: 10%;
    }
}

@media only screen and (min-width: 768px) {
    .centered {
        margin-left: 30%;
        margin-right: 30%;
    }
}