/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #287b75;
}

/* Container centering */
.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

/* Wrap image and by-line */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo image */
.logo {
  max-width: 90%;
  width: 500px;
  height: auto;
  margin-bottom: 1rem;
}

/* By-line text */
.byline {
  color: #f7e8e1;
  font-size: 1.25rem;
  max-width: 600px;
  line-height: 1.5;
}
