html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.title_cover {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.title {
  color: #54acd4;
  font-weight: bolder;
  position: relative;
  display: inline-block;
  padding-top: 10px;
  font-size: 40px;
}

.title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #54acd4;
}

.section1,
.section2 {
  display: flex;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 50px;
}

.section1 h1,
.section2 h1 {
  font-size: 30px;
}

header {
  background-color: #54acd4;
  padding: 30px 0;
}

header img {
  width: 20rem;
}

header .menu_cover {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu {
  display: flex;
  gap: 1.2rem;
  font-size: 1.5rem;
  color: white;
}

.menu-item {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu span {
  background-color: white;
  height: 6px;
  margin: 4px;
  width: 40px;
}

table {
  border-collapse: collapse;
  width: 1000px;
  margin: auto;
}

table th,
table td {
  font-size: 0.89rem;
  border: 1px solid black;
  padding: 15px;
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
}

table th {
  text-align: center;
}

.section2_text {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.section2_text p {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}

footer {
  background-color: #54acd4;
  padding: 30px 0;
}

footer .section_cover{
  display: flex;
}

footer .phone_number {
  font-size: 3rem;
  color: #f0f0f0;
  font-weight: bold;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .menu_cover {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

footer .menu {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}

footer .menu_item {
  margin: 1rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.reserved {
  margin: 20px;
  display: flex;
  justify-content: center;
}

.reserved_text {
  align-items: center;
  color: white;
  font-size: 12px;
}

@media screen and (max-width: 1200px) {


  header img {
    margin: 10px 0;
    width: 100%;
  }

  .menu-item {
    margin: auto 4px;
    color: white;
    text-decoration: none;
    font-size: 75%;
    font-weight: bold;
  }
}


@media screen and (max-width: 767px) {

  .title_cover {
    border-top: 2px#54acd4;
  }

  .title {
    color: #54acd4;
    font-weight: bolder;
    position: relative;
    display: inline-block;
    padding-top: 10px;
  }

  .title:before {
    height: 2px;
  }


  section {
    margin-top: 30px;
  }

  .section1,
  .section2 {
    padding-top: 0;
    padding-bottom: 5px;
  }

  .section1 h1,
  .section2 h1 {
    font-size: 25px;
  }

  header {
    padding: 7px;
  }

  header img {
    width: 15rem;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: #54acd4;
    position: absolute;
    top: 100px;
    right: 0;
    width: 200px;
  }

  .menu-item {
    padding: 15px;
    text-align: center;
  }

  .burger-menu {
    display: flex;
  }

  .menu.active {
    display: flex;
  }

  .title {
    font-size: 60px;
  }

  table {
    width: 85%;
    margin: auto;
  }

  table th,
  table td {
    font-size: 12px;
    border: 1px solid black;
    padding: 5px;
    text-align: left;
    vertical-align: middle;
    font-weight: bold;
  }

  table th {
    text-align: center;
    padding: 0 20px;
  }

  table td {
    padding: 5px;
  }

  .section2_text {
    display: flex;
    justify-content: center;
    margin: 0 30px 30px 30px;
  }

  .section2_text p {
    font-size: 15px;
    font-weight: bold;
    line-height: 2;
  }

  footer {
    padding: 10px;
  }

  footer .phone_number {
    width: 100%;
    font-size: 20px;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  footer .menu {
    font-size: 1.5rem;
  }

  footer .menu-item {
    margin: 0 2px;
  }

  footer .menu_cover{
    display: none;
  }

  .reserved {
    margin: 10px;
  }

  .reserved_text {
    align-items: center;
    color: white;
    font-size: 5px;
  }

}

