/* Reset basic margins */
body, h1, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

/* Main container for text */
.container {
  margin-top: 10%;
}

.title {
  font-size: 15rem;
  font-weight: normal;
}

.subtitle {
  font-size: 2.5rem;
  margin-top: -0.5rem;
}

/* Banner styling */
.banner {
  margin-top: 2rem;
}

.stripe {
  height: 20px;
}

.green {
  background-color: #1B5E20; /* Kerry green */
}

.gold {
  background-color: #E4A600; /* Kerry gold */
}
