* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	word-break: keep-all;
}

body {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#bg {
	width: 100%;
	height: auto;
	z-index: -1;
}

h1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	font-size: 16px;
	font-weight: normal;
	border-radius: 20px;
	border: white 1px solid;
	color: white;
}

#name {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dep {
	position: relative;
	display: inline-block;
	width: calc(100%/3);
	height: 100%;
	border: white 1px solid;
	border-radius: 20px;
	color: white;
}

.title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 99;
}

#departments {
	position: absolute;
	display: flex;
	top: 50%;
	left: 0;
	width: 100%;
	height: 50%;
}

h1:hover,
.dep:hover {
	background-color: white;
	opacity: 0.5;
	color: black;
	text-shadow: 0px 0px 3px white;
}

#bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#f5f5f5, white);
}

@media screen and (max-width: 1000px) {

#bg {
	left: 50%;
	transform: translate(-50%);
	width: auto;
	height: 100%;
	}

h1 {
	font-size: 30px;
	border: white 2px solid;
	border-radius: 60px;
}

.dep {
	font-size: 30px;
	border: white 2px solid;
	border-radius: 60px;
}

}