:root {
  --color-green: #7e8e65;
  --color-grey: #e7e5de;
  --color-red: #c46d4e;
  --color-boxShadow: #b7adad;

  --cormoratnSc: 'Cormorant SC', serif;
  --montserrat: 'Montserrat', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

h1 {
  font-weight: 300;
}

img {
  width: 100%;
}

figure {
  margin: 0;
}

button {
  cursor: pointer;
}

body {
  background: var(--color-grey);
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}

.banner_imgContainer {
  margin: 10px auto;
  padding: 30%;
  /* outline: 1px solid red; */
  background-image: url('./assets/mexicanWineFestival_hori.jpeg');
  background-repeat: no-repeat;
  background-size: contain;
}

.lobby_imgContainer {
  width: 40%;
  box-shadow: 5px 5px 10px var(--color-boxShadow);
}

.container {
  display: flex;
  justify-content: space-between;
  /* margin-top: 50px; */
  /* align-items: center; */
  /* flex-wrap: nowrap; */
}

/* .section-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  display: grid;
  justify-items: center;
  width: 60%;
  height: 100vh;
  padding: 0px 50px;
} */

.section-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 50px;
  width: 50%;
}

.logoContainer {
  width: 30%;
  min-width: 250px;
}

.section-info {
  text-align: center;
}

.logo_imgContainer {
  min-width: 200px;
  width: 30%;
}
.buttonContainer {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.buttonContainer_left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn {
  font-family: var(--montserrat);
  font-size: 1.2rem;
  padding: 10px 50px;
  background: transparent;
  border-style: none;
  border: 1px solid grey;
  border-radius: 60px;
  color: var(--color-green);
  margin-bottom: 15px;
  width: 250px;
}
.btn:hover {
  font-size: 1.3rem;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-info {
  font-size: 0.9rem;
  line-height: 30px;
  letter-spacing: 2px;
}

.article_info {
  text-align: center;
  margin-bottom: 50px;
  /* margin-top: -80px; */
}

@media only screen and (max-width: 1200px) {
  .lobby_imgContainer {
    width: 50%;
  }
  .section-center {
    width: 40%;
  }
}

@media only screen and (max-width: 875px) {
  .container {
    flex-wrap: wrap-reverse;
  }
  .section-center {
    width: 100%;
    padding: 20px 15px;
  }

  .lobby_imgContainer {
    width: 100%;
    margin-top: 50px;
  }
  .lobby_imgContainer img {
    margin-bottom: -5px;
  }
}

@media only screen and (max-width: 500px) {
  .banner_imgContainer {
    margin: 0px auto;
    padding: 100% 50%;
    /* width: 100%;
    height: 800px; */
    /* outline: 1px solid red; */
    background-image: url('./assets/mexicanWineFestival_vert.jpeg');
    background-repeat: no-repeat;
    background-size: contain;
  }
}
