* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-width: 700px;
}

.content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  flex-shrink: 0;
  gap: 20px;
}

ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

a,
.hero p {
  text-decoration: none;
  color: #E5E7EB;
  font-size: 18px;
  flex: 1;
}

.logo {
  font-size: 24px;
}

.logo,
li a {
  color: #FFAA01;
}


h2,
h3,
h4 {

  font-family: "Sedan SC", serif;
}

h2,
h4 {
  color: #B20516;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 36px;
}

.header,
.footer,
.hero {
  background-color: #010000;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  flex-shrink: 0;
  color: #fff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  margin-bottom: 5px;
}

.hero img {
  border: 2px solid #FFAA01;
  border-radius: 5px;
}

.image-container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
}

.images .text {
  width: 320px;
}

h3,
.images .text,
q {
  text-align: center;
  padding: 8px;
}

.quote-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  background-color: #1F2937;
  flex-grow: 1;
}

.quote {
  display: flex;
  flex-flow: column wrap;
  font-size: 36px;
  font-style: italic;
  color: #E5E7EB;
}

.quote-cite {
  align-self: flex-end;
  padding: 10px;
}


.bg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  background-color: #010000;
  height: 80px;
  width: 500px;
  padding: 10px;
  border-radius: 5px;
}

.sign-up-container {
  background-color: #FFAA01;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.sign-up-text {
  color: #fff;
}


.images img {
  border: 3px solid #B20516;
  border-radius: 4px;
}

.footer a {
  flex: 0;
}

.hero-text {
  min-width: 300px;
}

button {
  border: 2px solid #B20516;
  border-radius: 5px;
  color: #B20516;
  background-color: #FFAA01;
  width: 80px;
  height: 40px;
  font-weight: bold;
}

h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
