:root {
    --background-color: #1D1616;
    --main-color: #8E1616;
    --second-color: #D84040;
    --important-color: #EEEEEE;
}

@font-face {
    font-family: 'Grasshopper';
    src: url('/style/Grasshopper.ttf');
}

h1 {
    text-align: center;
    font-family: 'Grasshopper', 'Gloria', serif;
}

html {
    background-color: var(--background-color);
    color: var(--second-color);
}

.content {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}


a {
    color: var(--important-color);
    margin: 0 1rem;
}

fieldset {
    margin: 1rem 0;
    padding: 1.3rem;
    border-color: var(--main-color);
    border-radius: 0 70px / 140px;
    text-align: center;
    background-color: black;

    legend {
        font-family: 'Grasshopper', serif;
        color: var(--main-color);
    }

}

.frame-container {
    border-radius: 0px 40px / 140px;
    width: 350px;
    overflow: hidden;
}

canvas{
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100%;
    width: 100%;
}