:root {
    --color: #00e096;

    font-family: 'Figtree';
}

html {
    position: relative;
    height: 100%;
    background-color: #000;
    color: #fff;
}

body {
    margin: 0;
}

button, a {
    font-family: 'Figtree';
    font-size: 1.1rem;
    background: transparent;
    border: 2px solid transparent;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

a {
    text-decoration: none;
}

button:hover, a:hover {
    opacity: 0.7;
}

h1 {
    font-size: 4rem;
}

header {
    box-sizing: border-box;
    padding: 1rem;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, #7700CC 0%, transparent 40%),
        radial-gradient(circle at 70% 40%, #B2401A 0%, transparent 45%),
        radial-gradient(circle at 50% 75%, #B2801A 0%, transparent 50%)
    ;
    z-index: -1;
}

.header_logo > img {
    height: 4rem;
    border-radius: 0.5rem;
}

.menu, .video {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 1rem;
    text-align: center;
}

.menu_button, .return_button {
    margin-top: 3rem;
    background-color: #ffffff2c;
    border: 1px solid #fff;
    width: 100%;
    max-width: 20rem;
}

.menu_button > span, .return_button > span {
    margin-right: 1rem;
}

.menu_button.-alt {
    margin-top: 3rem;
    background-color: #fff;
    color: #000;
    width: 100%;
    max-width: 20rem;
}

.video {
    display: none;
}

.video iframe {
    width: 50rem;
    max-width: 100%;
    height: 30rem;
    margin-top: 3rem;
    border: none;
}

@media (max-width: 786px) {

    .video iframe {
        height: 17rem;
    }
}