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


header {
	align-content: center;
	text-align: center;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	padding: 50px 0px 0px 0px;
	font-size: 40px;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background-image: url("background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family: Arial, sans-serif;
  color: white;
}

.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 40px;

  background-color: rgba(0, 0, 0, 0.35);
}

h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

p {
  font-size: 20px;
}

