@charset "UTF-8";
/* CSS Document */

/* mobile view */
@media (max-width:414px){
	
}
body {
  margin: 0;
  padding: 0;
  font-family: ocr-a-std, monospace;
	font-style: normal;
font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: radial-gradient(#061E22,#01323B,#001F39,#001F39);
 
}
.container {
  text-align: center;
}

.container img {
  width: 90%;
  max-width: 450px;
	padding-top: 10%;
	padding-bottom: 3%;
}
.button {
	font-family: ocr-a-std, monospace;
	font-style: normal;
font-weight: 200;
font-size: 10px;
  background-color: transparent;
	color: white;
	width:200px;
	height: 70px;
	border: 2px solid #fff;
  padding: 1em 2em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.button:hover {
  background-color:#166070;
  color: white;
}



