#main-bg {
  height: 70vh;
}

.reservation-container {
  background-color: #ebf0eb;
}

.reservation-wrapper{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reservation-wrapper h1 {
  font-size: 40px;
  color: #333333;
  font-weight: bold;
  text-transform: uppercase;
}

.reservation-wrapper h1 span {
  font-weight: lighter;
}

.reservation-wrapper a {
  background-color: #fdd340;  
  padding: 20px 50px;
  font-style: normal;
  text-decoration: none;
  cursor: pointer;
  color: #333333;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 26px
}

.reservation-wrapper p {
  color: #777777;
  margin-top: 30px; 
}

#pricing {
  width: 100%;
  height: 100%;
}

#pricing img {
  width: 100%;
}

.pricing-wrapper {
  max-width: 1190px; 
  display: flex;
  flex-direction: column;
}

#price-list {
    display: flex;
    justify-content: center;
    width: 100%;
}
table {
    height: 160px;
    width: 1140px;
    text-align: center;
    border: 1px solid #333333;
    border-collapse: collapse;
    margin-top: 70px;
    margin-bottom: 70px;
}

th {
    padding: 20px;
    background-color: #222222;
    border: 1px solid #333333;
    color: #dcdcdc;
}

td {
    padding: 20px;
    color: #dcdcdc;
    border: 1px solid #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

hr {
    border-top: 1px solid #333333;
}

@media only screen and (max-width: 420px) {
    table {
        width: 350px;
        font-size: 22px;
    }

    th,
    td {
        padding: 10px;
    }
    td {
        font-size:18px;
    }
}
