
html {
	
}

body {
	background: black;
	color: white;
}

nav {
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px;
	background: rgba(0, 0, 0, 0.5);
	font-size: 20pt;
	backdrop-filter: blur(10px);
	z-index: 2;
	border-bottom: 1px solid red;
}

a {
	color: gold;
	text-decoration: none;
}

#tower {
	position: relative;
	text-align: center;
	padding-top: 30px;
}

left-line, right-line {
	position: absolute;
	width: 2px;
	background: red;
	top: 30px;
	bottom: 0;
}

left-line {
	left: 20vw;
}

right-line {
	right: 20vw;
}

#tower > div {
	width: 55vw;
	background: #111;
	display: inline-block;
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
}

#tower-logo {
	width: 300px;
}

.company-logo {
	max-width: 300px;
}

footer {
	text-align: center;
	padding: 20px;
	font-size: 20px;
	background: rgba(50, 0, 0, 0.5);
}

@media (max-width: 6in) {

	.company-logo {
		width: 80%;
	}

	#tower > div {
		width: 80%;
	}

	left-line {
		left: 2vw;
	}

	right-line {
		right: 2vw;
	}
}