body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.2em;
}
.container {
  	width: auto;
  	position: relative;
  	height: 100vh;
  	overflow-y: auto;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: center;
  	box-sizing: border-box;
  	background-image: url('img/fc-404-background.png');
  	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: top;
  	text-align: center;
  	color: #fff;
  	font-family: Inter;
  	padding: 0 30px;
}
.msg-box {
  	border-radius: 30px;
  	background-color: #003ee7;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: center;
  	padding: 60px;
  	gap: 16px;
  	cursor: pointer;
}
.phone-icon {
  	height: 200px;
  	position: relative;
  	max-height: 100%;
  	margin-bottom: 20px;
}
.title {
  	font-size: 1.5em;
}
.description p {
  margin: 0
}
