/* Page background and basic layout of body */
body {
  background-color: #1b902f;
  margin: 0;
  padding: 0;
  font-family: Silkscreen, sans-serif;
  font-size: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ONLY Jonah logo formatting. Does not include bar */
.logo {
  width: 30%;
  max-width: 1600px;
  margin-top: 40px;
  margin-bottom: 70px;
}

/* Color bar that runs along the top encapsulating Jonah's logo */
.logo-bar {
  width: 100%;
  background-color: #144d1e;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px; 
  margin-bottom: 100px;
  margin-top: 50px;
}

/* Formatting for both WadeDogs, iframe, and wain */
.framed-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

/* Styling for both WadeDogs */
.side-image {
  width: auto;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
  margin-top: 230px;
}

/* Formatting for just Wain and iframe */
.main-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Styling for just Wain */
.main-image {
  width: 70%;
  max-width: 500px;
  margin-bottom: -9px;
  margin-right: 40px;
}

/* Just iframe styling */
iframe {
  border: none;
  width: 520px;
  height: 402px;
}