/* default settings for website */

html,
body {
  font-family: "Montserrat", sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: url(04_img/background.jpg);
  background-size: cover;
  align-items: center;
  justify-content: center;
}

section {
  display: flex;
  flex-direction: column;
  -ms-flex-align: center;
  gap: 45px;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 0;
}

.logo {
  display: flex;
  width: 100%;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 2rem;
}

.hours {
  width: 80%;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 2s ease-in-out infinite alternate;
  -moz-animation: glow 2s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;
}

a {
  color: white;
  text-decoration: none;
}



img {
  border-radius: 25px;
  width: 90%;
  height: auto;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px 10px white;
}

.hours {
  width: 80%;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 2s ease-in-out infinite alternate;
  -moz-animation: glow 2s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;
}


@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #0176d0, 0 0 40px #0176d0, 0 0 50px #0176d0, 0 0 60px #0176d0, 0 0 70px #0176d0;
  }

  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #de1616, 0 0 40px #de1616, 0 0 50px #de1616, 0 0 60px #de1616, 0 0 70px #de1616, 0 0 80px #de1616;
  }
}