/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
  position: relative;
  top: -80px;
}

.logo {
  max-width: 100%;
  height: auto;
  width: 400px; /* Adjust logo size as needed */
}

.coming-soon {
  margin-top: 20px;
  font-size: 1.5rem; /* Adjust text size for desktop */
  font-weight: bold;
  color: #ffffff;
}

.address {
  margin-top: 20px;
  font-size: 0.8rem; /* Adjust text size for desktop */
  font-weight: regular;
height: 50px; /* Placeholder height */
  color: white;
}

.address a:link, .address a:visited{
color:white;
}

@media (max-width: 600px) {
  .coming-soon {
    font-size: 1.2rem; /* Adjust text size for mobile */
  }

  .logo {
    width: 280px; /* Adjust logo size for mobile */
  }
}

.opening-hours {
  margin-top: 30px;
  font-size: inherit;
  text-align: center;
}

.opening-hours table {
  margin: 10px auto;
  border-collapse: collapse;
}

.opening-hours td {
  padding: 4px 12px;
  text-align: left;
  font-size: inherit;
}

.opening-hours tr td:first-child {
  text-transform: lowercase;
  color: #ccc;
}

.opening-hours p {
  margin-bottom: 8px;
}