* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

body {
    background-color: #fff;
}

header {
    background-color: #000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

main {
    padding: 2rem 0;
}

.restaurants-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.upcoming-restaurants-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.restaurant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background-color: #f7f7f7;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
}

.restaurant-name {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.restaurant-location {
    font-size: 12px;
    font-weight: 400;
    color: #0099ff;
}

.restaurant-area {
    font-size: 12px;
    font-weight: 400;
    color: #000;
}

.restaurant-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.happy-hour-menu {
    font-size: 12px;
    font-weight: 400;
    color: #0099ff;
}

.happy-hour {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.message {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    line-height: 2em;
}