/* Base styles */
* {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
	box-sizing: border-box;
	
	

}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #ff00a7;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
/* 
.center {

} */

body {
	margin: 0;
}

.invert {
	filter: invert(100%);
}
.badge {
	width: 2em;
}

.inline, .inline > * {
	display: inline;
	vertical-align: middle;
	margin-right: 2%;
}


#fiveserver-info {
	font-weight: bold !important;
	/* font-style: italic !important; */
	background-color: powderblue !important;
	color: black !important;
	
}

.navbar {
	background-image: url('images/trail.png');
	background-color: rgba(200, 162, 200, 0.5);
	display: flex;
	justify-content: left;
	align-items: center;
	width: calc(100% - 164px);
	height: 122px;
	margin: 1.5% 0;
	overflow: hidden;
	padding: 0 1%;
	/* box-shadow: 5px 5px 10px gray; */
}


.navbar > * {
	margin-right: 2%;
}


.plane {
	float: right;
	position: relative;
	/* margin-top: -18px; */
	/* margin-right: 10px; */
	/* margin-top: -1.14em; */ 
	margin-right: 0.625em;

	top: 50%;
	transform: translateY(-11.403%); /* I think this works. I hate css so much. If there's a "Better" way of doing it, let me know, please. */
}

img {
	image-rendering: crisp-edges;
}

.defaultbox {
	/* width: 35%; */
	/* padding: 0; */
	text-align: center;
	/* margin: 0 auto 10px auto; */

	/* background-color: white; */
	/* border-top-right-radius: ; */
	z-index: 0;
	background-color: white;
	padding: 1;
	box-shadow: 5px 5px 10px gray;

}


.defaultbox2 {
	padding: 1;
	margin: -3;
	z-index: -1;
	border: 5px dashed gray;
	
}

.footer {
	margin: 20% auto 0 auto;
	display: block;
}

.elems > * {
	margin: auto;
	display: block;	
}

.elems > div > img {
	width: 100%;
	margin-bottom: -60%;
}

.elems > .defaultbox {
	max-width: 50% !important;
	margin-bottom: 1em;

}


.elems > .defaultbox > h2 {
	margin: auto;
	display: block;
	width: 75%;
	text-align: center;
	
}



/* Responsive styles */
@media screen and (max-width: 767px) {
	.navbar {
		/* background-size: cover;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		height: auto;
		padding: 10px; */
		width: 100%;
		/* margin-top: 0; */
	}

	.plane {
		display: none;
		/* float: none;
		margin-top: 10px;
		margin-right: 0;
		align-self: flex-end; */
	}

	.defaultbox {
		width: 90%;
		margin: 10px auto;
		text-align: center;
	}

	.elems > .defaultbox {
		width: 90%;
		margin-bottom: 5%;
	}

	.elems > .defaultbox > h2 {
		width: 100%;
		text-align: center;
	}

	.elems > div > img {
		width: 100%;
		margin-bottom: -20%;
	}

}
