body {
	padding: 0;
	margin: 0;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image: url('../images/nexisBG.jpg');
	background-repeat: round;
	background-size: auto;
	animation: backgroundZoom 20s infinite forwards;
}

@keyframes backgroundZoom {
	0% {
		transform: scale(1.0);
	}

	50% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1.0);
	}
}

.header {}

.header-container {
	display: flex;
	backdrop-filter: blur(15px);
}

.logo {
	height: 150px;
}

.logo-icon {
	display: flex;
	justify-content: center;
	height: fit-content;
	width: fit-content;
}

.page-title {
	flex-grow: 6;
}

h1 {
	padding: 25px 0px 0px 0px;
}

h1 .title {
	font-family: "Zen Dots", serif;
	color: white;
	border-right: 3px solid white;
	padding-right: 5px;
}

h1 .page-name {
	font-family: "Orbitron", serif;
	font-weight: 300;
	color: white;
	padding-left: 5px;
}

.user-info {
	padding-top: 50px;
	display: flex;
	justify-content: center;
	height: fit-content;
	width: fit-content;
}

.user {
	color: white;
	font-size: 20px;
}

.avatar {
	height: 40px;
	border-radius: 100%;
	float: left;

}

.nickname {
	padding: 0px 10px 10px 10px;
	font-family: Arial;
	font-size: 30px;
}

.logout-button {
	overflow: hidden;
	font-size: 25px;
	padding-top: 55px;
	padding-left: 20px;
	padding-bottom: 65px;
}

.logout-button a {
	transition: .3s;
	font-size: 25px;
	color: white;
	padding-top: 55px;
	padding-bottom: 65px;
	padding-left: 20px;
	padding-right: 20px;
}

.logout-button a:hover {
	transition: .3s;
	background-color: rgba(0, 215, 255, 0.3);
}


.body-container {
	margin-top: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.dashboard-container{
	border: 2px solid white;
	backdrop-filter: blur(15px);
	margin-left: 50px;
	margin-right: 50px;
}

.dashboard {
	display: flex;
    flex-wrap: wrap;
	--background-color: rgba(0, 0, 0, 0.3);
	padding: 20px;
}

.server-select{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.selects{
	flex-grow: 1;
	display: flex;
    flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 10px;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}

.option-title {
	color: white;
	font-family: sans-serif;
}

select {
	width: 300px;
	height: 35px;
	border-radius: 10px;
	border: none;
	outline: none;
	backdrop-filter: blur(15px);
	color: black;
	padding: 10px;
}

.error-block{
	border: 2px solid white;
	border-radius: 20px;
	text-align: center;
	backdrop-filter: blur(15px);
	padding: 0px 50px 10px 50px;
}

.error-message h1{
	margin-top: 4px;
	font-family: "Orbitron", serif;
	color: rgba(255, 74, 74, 0.8);
}

.error-message p{
	font-family: sans-serif;
	color: white;
}

textarea{
	resize: none;
	padding: 2px;
	outline: none;
}

.button{
    margin: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 5px;
    height: 25px;
    width: 200px;
    color: white;
}

.button:hover{
    margin: 3px;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
}

.alerts-checkbox{
    height: 30px;
    width: 30px;
    margin: 10px;
    border-radius: 50px;
}

.auto-roles-select{
    
}

.add-word-input{
    height: 25px;
    width: 199px;
    border: none;
    outline: none;
    font-size: 15px;
}
