/**
 * Styles for "Noodle Time" - Base theme colors are yellow and red
 */

body {
    font-family: Roboto;
    margin: 0px;
}

/* Note that the classes "web-content-light" and "web-content-dark" are assigned to "body" element */
.web-content-light {
    background: #fff; /* White */
    color: #333;      /* Dark dark dark grey */
}
.web-content-dark {
    background: #000; /* Black */
    color: #ddd;      /* Light light light gray */
}

/* Define styling for our primary website navigation element */
#primary-nav {
    position: relative;
    background: yellow;
}
#primary-nav a {
    display: inline-block;
    padding: 10px 20px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}
#primary-nav #light-dark-mode-button {
    position: absolute;
    top: 0px;
    right: 0px;
}

/* This id is assigned to an h2 element in our index.html (Home) */
#promo-heading {
    background: yellow;
    color: #333;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 20px;
}

/* Below is the styling for all of our web content below the primary navigation and main heading */
#web-content-inner {
    max-width: 1000px;
    width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 16px;
}
table {
    width: 100%;
}
.noodle-bowl {
    background: yellow;
    color: #333;
    padding: 10px 20px;
}
.noodle-chef {
    display: inline-block;
    width: 200px;
    height: 200px;
    object-fit: cover; /** Prevents image stretching **/
}
.contact-form-input {
    display: block;
    background: yellow;
    color: #333;
    margin: 20px;
    padding: 20px;
}
.contact-form-input input,
.contact-form-input textarea {
    margin-top: 10px;
    padding: 10px;
    width: calc(100% - 20px);
}