/* 1. Use a more intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}
/* 2. Remove default margins */
* {
  margin: 0;
}
/* 3. Core body setups */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh; /* Prevents background tiling issues */
}
/* 4. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/* 5. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}
/* 6. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* end reset */

body {
  background-image: url('/woods.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 100vh;
}
div.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
div.content {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  max-width: 1200px;
  flex: 1;
}

.content h1 {
  font-size: 3rem;
  color: #2b332d;
  text-align: center;
  margin-top: 2rem;
}

.content p {
  font-size: 1.2rem;
  color: #2b332d;
  text-align: center;
  margin-top: 1rem;
}
