/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  padding: 0;
  background-image: url("background.gif");
  background-size: cover;
  font-family: Georgia, 'Times New Roman', serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 400px;
  max-width: 90%;
  height: auto;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

main p {
  font-size: 1.4rem;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}