:root{
	--background: #E5E5E5;
	--base-color: #385F82;
	--dark-blue: #0E3954;
	--medium-blue: #AFD8E2;
	--light-blue: #9BBCC4;
}

* {
	margin:0;
	padding: 0;
	box-sizing: border-box;
}

body{
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(135deg, var(--background) 50%, var(--medium-blue) 60%);
	display: flex;
	justify-content: center;
	border:1px solid red;
	font-family: Verdana, Tahoma, Geneva, sans-serif;
	padding: 20px;
}

.container{
	width: 100%;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--base-color); 
	
}

.logo{
	width: 200px;
	position: relative;
	border-radius: 50%;
	overflow:hidden;
	box-shadow: 0 0 10px #0E395480;
	margin-bottom: 16px;
	transition: transform 0.3s ease;
}

.logo img{
	width: 100%;
	object-clip: cover;
	transition: all 0.3s ease;
}

.logo:hover{
	transform: translateY(-5px);
}

.logo:hover img{
	transform: scale(1.05);
	box-shadow: inset 0 0 5px #0E395480;
}

.page-title{
	line-height: 1.6;
	letter-spacing: .5px;
	text-shadow: 1px 1px 5px #0E395480;
}

.page-subtitle{}