@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
  background-color: #f4f4f4;
  color: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("https://images.pexels.com/photos/1563356/pexels-photo-1563356.jpeg");
  background-size: cover;
  background-position: center;
}
.container {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
h1 {
  font-size: 2.5rem;
  color: #f3f3f3;
  margin-bottom: 20px;
	text-align: center;
}
p {
  font-size: 1.2rem;
  color: #f6f6f6;
  margin-bottom: 20px;
	text-align: center;
}
a {
  text-decoration: none;
  color: #f3f3f3;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #333;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
a:hover {
  background-color: #555;
}