@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100&display=swap'); /*importing Lato font*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');

:root {
	--unw-purple: #331E54;
	--unw-yellow: #ECAC00;
	--off-white: #F6F6F6;
	--light-gray: #D9D9D9;
	--green: #03B068;
	--red: #FF4C50;
}
body {
	width: 100vw;
	margin: auto;
	background-color: var(--light-gray);
	font-family: Lato;
	font-size: 40px;
}
a {
	color: var(--unw-yellow);
}
.page {
	width: 100%;
}
.header {
	top: 0;
	width: 100%;
	height: 8vh;
	background-color: var(--unw-purple);
	display: flex;
}
.image {
	height: 70%;
	margin: auto;
	margin-left: 1%;
}
.card-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
}
.card {
	background-color: var(--off-white);
	border-radius: 3px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	padding: 0.5rem;
}
.outage-status {
	width: 60%;
	margin-top: 3%;
}
.status-text {
	font-size: 60%;
	margin-left: 1%;
}
.red {
	color: var(--red);
	font-weight: bold;
	font-size: 55%;
	margin: auto;
}
.text {
	font-size: 40%;
	margin: auto;
	margin-bottom: 2%;
	text-align: center;
}
.center {
	display: flex;
	justify-content: center;
}
.m-a {
	margin: auto;
}
.icon {
	height: 30%;
	margin: auto;
}
@media (max-width: 800px) {
	.card-wrapper {
		width: 90%;
		margin: auto;
	}
	.card {
		width: 100%;
		height: 100%;
	}
	.red {
		font-size: 65%;
		line-height: 150%;
	}
	.text {
		font-size: 60%;
		line-height: 150%;
	}
	.icon {
		height: 40%;
	}
}
