html, body
{
    margin: 0;
    background-image: url(../shared/image.png), url(/shared/image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;
    font-family: 'Open Sans', sans-serif;

    overflow: hidden;
}

.topBar
{
    position: absolute;
    display: flex;

    align-items: center;

    width: 100%;
    height: auto;

    margin-top: 30px;

    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
}
.topBar .image
{
    margin-left: 10px;

    width: auto;
    height: 100px;
}

.topBar .firstSpacer
{
    flex-grow: 0.25;
}

.topBar .secondSpacer
{
	flex-grow: 0.25;
}

.topBar .content
{
    flex-grow: 0.75;

    display: flex;
    align-items: center;
    justify-content: space-evenly;
}


.topBar .content .txt
{
	position: relative;
	text-decoration: none;

    display: inline-block;
    margin: 0;
    color: white;
    font-size: 125%;
    font-weight: bold;

    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.topBar .content .seperator
{
    display: inline-block;

    width: 3px;
    height: 25px;

    margin: 0;

    margin-left: 20px;
    margin-right: 20px;

    background-color: white;
}

.animatedBorder
{
	position: absolute;

	background-color: white;

	left: 50%;
	width: 0%;
	height: 2.5px;

	transform: translate(-50%, 0px);
	transition: width 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}

.mainContent
{
	position: absolute;
	top: 130px;
	width: 100%;
	height: calc(100% - 130px);
}

.mainContent .relativeHolder
{
	position: relative;
	width: 100%;
	height: 100%;
}

.backgroundBox
{
	padding: 2vw;
	background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(25px);
    box-shadow: 0px 0px 1vw 1vw rgba(0, 0, 0, 0.2);
}
