body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #14162d;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo img {
    max-width: 100%;
    max-height: 600px;
    height: auto;
}

.open-now {
    color: #FFD146;
    font-size: 48px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.sections {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.section {
    flex: 1;
    margin: 0 0;
}

.section h2 {
    color: #F36E47;
}

.opening-hours .hours {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px 20px;
    justify-content: center;
    color: #99D0DD;
    margin-left: -24px;
}

.hours .day {
    text-align: right;
}

.hours .time {
    text-align: left;
}

.opening-hours h2,
.section h2 {
    margin-bottom: 10px;
}

.section p {
    margin: 5px 0;
    color: #99D0DD;
}

.address {
    margin: 0px 0;
    color: white;
    text-decoration: none;
    font-size: 24px;
}

.address:hover {
    text-decoration: underline;
}