html {
  height: 100%;
  width: 100%;
}
body {
  background: url(images/home_background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow-y: hidden;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
}
.row {
  padding: 10px;
  background-color: #0afe06;
  border-radius: 5px;
  margin: 10px 0;
  width: 60%;
  box-sizing: border-box;
  text-align: center;
}
  h1 {
  font-size: 36px; 
  font-weight: bold; 
  text-align: center; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  color: #0afe06; 
  text-shadow: 2px 2px black; 
  margin: 20px 0; 
}
.column .row {
  color: black;
  font-family: sans-serif; 
  font-size: 15px; 
  font-weight: bold; 
  letter-spacing: 2px;
  text-transform: uppercase; 
  margin: 10px 0;
}
a {
  text-decoration: none;
}
a:hover {
  color: white !important;
  transition: color 1s ease-out;
}
footer {
  font-family: Arial, sans-serif; 
  font-size: 14px; 
  color: #e1dbdb; 
  text-align: center; 
}
