* {
  margin: 0;
  padding: 0;
}

.main {
  width: 100%;
  height: 100vh;
  display: grid;
  font-family: sans-serif;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('../assets/bg2.jpg');
}

.contain {
  display: grid;
  padding: 20px 0;
  grid-template-rows: auto 1fr;
  background-color: rgba(0, 0, 0, 0.5);
}

.contain_title {
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  margin: 5px 0;
  font-size: 1.6em;
  color: #ffffff;
  font-weight: 600;
}

.contain_body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.day_title {
  font-weight: 700;
  font-size: 5em;
  color: #ffffff;
}

.contain_hours {
  display: flex;
  margin: 20px 0;
  align-items: center;
  justify-content: center;
}

.hours {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 20px;
}

.hours_title {
  font-weight: 600;
  font-size: 3em;
  color: #ffffff;
}

.text {
  font-weight: 500;
  font-size: 1.1em;
  color: #ffffff;
}