@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400&display=swap');

body {
    margin: 0;
    padding: 0;
    background-image: url('../img/food_bg_for_food_tracker_dark_mode.jpg');
}

.mobile-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    min-height: 100vh;
    background-color: #2A2A2A;
    /* Help from my tutor Robert Hollander was granted */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Citation ends here */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;

}

p,
a {
    font-family: 'Raleway', sans-serif;
}



h1,
h2,
h3 {
    font-family: 'Bitter', serif;
}

* {
    color: #B1B1B1;

}


button {
    background-color: #B1B1B1;
    color: #2A2A2A;
}

button:hover {
    /* Added by tutor Robert Hollander */
    cursor: pointer;
    /* Citation ends here */
}

input {
    color: #2A2A2A;
}

input::placeholder {
    color: #2A2A2A;
}



.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #333;
    color: white;
}

.logo {
    font-size: 1.5rem;
}

.hamburger {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    /* Added by tutor Robert Hollander */
    cursor: pointer;
    /* Citation ends here */
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #444;
}

.mobile-menu a {
    color: white;
    padding: 16px;
    text-decoration: none;
    border-top: 1px solid #555;
}

.mobile-menu a:hover {
    background-color: #555;
}

.mobile-menu.show {
    display: flex;
}
