html {
    font-family: 'Roboto', sans-serif;

}

body {
    min-height: 100vh;
    background-color: #262626;
    background-position: top 58px center;
    background-repeat: no-repeat;
    background-image: radial-gradient(50% 50% at top center, rgba(0, 0, 0, .66), #262626), var(--featured-img);
    background-size: 120% 2000px, 100% 2000px;
    --featured-img: linear-gradient(180deg, #fff, #262626);
    --bg-blend-mode: overlay;
    color: white;
}

.modal {
    color: #262626
}

h1 {
    border-bottom: 1px dotted black;
}

nav {
    margin-bottom: 2em;
    background-color: aqua;

}

.navbar {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    line-height: 40px;
    padding-bottom: 5px;
    ;
}

.form-area {
    background-color: #262626;
    padding: 3em;
    border-radius: 30px;
}

.form-area>form>div {
    padding: 2em;
    font-size: 1.2em;
    border-bottom: 1px dotted grey;
    margin-top: 0.5em;
    border-radius: 7px;
    opacity: 0;
}

.form-area>form>div>p:nth-child(1) {
    font-size: 1.1em;
}

.form-area>form input[type=submit] {
    font-size: 1em;
    position: fixed;
    top: 80px;
    right: 0;
    z-index: 1000;
    margin: 5px !important;
}

.form-area>form label,
.form-area>form input[type=radio] {
    margin-right: .5em;
}