*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body {
    background:
}

#background {
    position: absolute;
    left: 0;
    top: 0;
	width: 100vw;
	height: 100vh;
	background: radial-gradient(circle, #111E3A, #070C17);
    z-index: -999;
}

.topbar {
    position: absolute;
    width: 100vw;
    height: 150px;
    background: #dedede;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

.topbar::after {
    position: absolute;
    content: '';
    width: 100vw;
    height: 15px;
    background: linear-gradient(red, transparent);
    bottom: -15px;
    z-index: -1;
}

.tobarLabel {
    position: absolute;
    left: 50%;
    top: 148px;
    transform: translateX(-50%);
    width: 800px;
    background: #dedede;
    border-radius: 0 0 10px 10px;
    font-size: 32px;
    text-align: center;
}
