/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

/* Global styles */
body {
  font-family: 'Bruno Ace', cursive;
  background-color: #cdc8c8;
}

/* Header styles */
header {
  background-color: rgb(231, 146, 115);
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

a {
  color: #333;
}

.logo img {
  max-height: 125px;
  margin-left: 10px;
}

nav ul {
  display: flex;
  margin-right: 75px;
}

nav li {
  margin: 0 20px;
  list-style: none;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

/* Main styles */
main {
  display: flex;
  flex-direction: row;
  padding: 10px;
  background-color: lightgray;
  gap: 1rem;
}

.flexbox-container-1 {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
  flex-grow: 1;
  gap: 2rem;
}

.flexbox-container-1 section {
  flex: 1;
}

.flexbox-container-2 {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
  flex-shrink: 0;
  gap: 2rem;
}

.flexbox-1 {
  width: 100%;
  height: 100px;
  padding: 20px;
}

.flexbox-2 {
  width: 100%;
  height: 100%;
  flex-grow: 1;
}

.flexbox-3 {
  width: 200px;
  height: 30px;
  padding: 20px;
  align-items: center;
}

.flexbox-4 {
  width: 200px;
  height: 100px;
  padding: 20px;
  align-items: center;
}

.flexbox-article {
  margin-bottom: 36px;
  background-color: #eeeaea;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.flexbox-article h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.flexbox-article h3 {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: left;
  color: #666;
}

.flexbox-article p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.flexbox-article a {
  display: inline-block;
  background-color: #4f4e4e;
  color: #fff;
  padding: 5px 10px;
  margin-top: 10px;
  text-decoration: none;
  font-size: 14px;
}

/* Footer styles */
footer {
  background-color: #333;
  color: #fff;
  height: 300px;
  display: flex;
  font-size: 24px;
  margin-top: auto;
  bottom: 0;
}

@media only screen and (max-width: 768px) {
  .flexbox-container-1 {
    flex-wrap: wrap;
  }

  .flexbox-1 {
    flex-basis: 100%;
  }

  footer {
    height: 400px;
  }
}
