.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: auto;
}

header {
  background-color: #333;
  color: #FFB347;
  padding: 1px;
}

.title1 {
  font-family: 'Dancing Script', cursive;
  font-size: 72px;
  color: #F9D56E;
}

.title2 {
  font-family: 'Dancing Script', cursive;
  font-size: 50px;
  color: #F9D56E;
  margin-top: -50px;
}

nav {
  background-color: #333;
  font-family: 'Dancing Script', cursive;
  padding: auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: auto;
  padding: auto;
  justify-content: space-between;
}

nav li {
  margin: auto;
}

nav a {
  color: #F9D56E;
  font-size: 36px;
  text-decoration: none;
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

.column {
  display: inline-block;
  flex-basis: calc(100% / 3 - 20px);
  background-color: #333;
  padding: auto;
  margin-bottom: auto;
}

.column-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #F9D56E;
  background-color: #333;
  margin: 10px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #F9D56E;
  background-color: #222;
}

.image-container {
  max-width: 100%;
  max-height: auto;
}

footer {
  background-color: #333;
  color: #FFB347;
  padding: 20px;
  text-align: center;
}

/* Media query for screens 767px or smaller */
@media screen and (max-width: 767px) {
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .column {
    width: 100%;
    margin-bottom: 20px;
  }
  nav {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  nav li {
    display: block;
    margin: 5px 0;
  }
}

/* Media query for screens 768px to 1099x */
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .column {
    flex-basis: calc(50% - 20px);
    margin: 10px;
  }
}

/* Media query for screens 1100px and larger */
@media screen and (min-width: 1100px) {
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .column {
    flex-basis: calc(33.33% - 20px);
    margin: 10px;
  }
}