body {
    font-family: Arial, Helvetica, sans-serif; 
    background-color: #003b754f;
}

.main-nav {
    display: flex;
    justify-content: space-around;
    padding: 50px 0px 50px 0px;
    max-width: 1200px;
    margin: auto;
    
}

.main-banner{
    border-radius: 20px;
}

.bottom-nav {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin: 10px 0px 10px 0px;
    max-width: 1200px;
}

.bottom-nav a {
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #0C243C;
    font-size: 24px;
    padding: 10px;
    border-radius: 10px;
    transition: 300ms;
}

/*nav hover effect*/
.bottom-nav > a:hover {
    color: #ffffff;
    background-color: #E94D40;
}

.wrapper {
    max-width: 1200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    padding: 0px 40px 0px 40px;
    border-radius: 10px;
}

.flex-container {
    display: flex;
    justify-content: space-evenly;
}

h1 {
    color: #ffffff;
    margin: 60px 0px 60px 0px;
    padding: 20px 40px 20px 40px;
    background-color: #0C243C;
    border-radius: 20px;
    transition: 500ms;
    font-size: 50px;
}

.h1-container{
    display: flex;
    justify-content: center;
}

h1:hover {
    color: #ffffff;
    background-color: #E94D40;
}

h2 {
    font-size: 44px;
    margin: 60px 0px 60px 0px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 34px;
    margin: 56px 0px 56px 0px;
    text-align: center;
}

.opening-hours {
    padding: 10px 0px 0px 0px; 
    font-size: 32px; 
    min-width: 500px; 
    margin-right: 10px;
}

/* cakes for sale element styling */
.cake-display-h3 {
    text-align: center; 
    background-color: #002950; 
    color: white;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
    font-size: 30px;
}

.cake-flex-container {
    display: flex;
    justify-content: space-evenly;
    padding: 0px 0px 40px 0px;
    text-align: center;
}

img.cake-display {
    border-radius: 10px;
}

.cake-flex-container > div {
    max-width: 300px;
}

.h3-container {
    display: flex;
    justify-content: center;
}

/* google map styling */
#google-map {
    margin-left: 70px;
}

p {
    margin: 5px 0px 5px 0px;
}

/* landing page id styling */
#landing-page-h2{
    text-align: center;
}

#landing-page-p {
    max-width: 500px;
    font-weight: bold;
    font-size: 30px;
    padding: 105px 0px 80px 0px;
}

#bakery-hours {
    padding: 40px 0px 40px 0px;
}

#landing-page-img {
    max-width: 500px; 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    border-radius: 20px;
}

#landing-page-info-wrapper > p {
    max-width: 500px;
    font-size: 30px;
}
/* landing page id styling */

/*styling for tables*/
table, th, td, tbody {
  border: 1px solid black;
}

table {
    border-collapse: collapse;
    border: 1px;
}

th, td {
    padding: 10px;
    max-width: 200px;
    min-width: 150px;
    text-align: center;
}

th {
    background-color: #E94D40;
    color: white;
}

#job-table {
    padding-bottom: 40px;
    display: flex;
    justify-content: space-around;
}

#price-table {
    padding-bottom: 40px;
}

/*styling for tables*/

/*styling for forms*/
form .required:after {
    content:'*';
    color:red;
}

#contact-text-box {
    max-width: 500px;
    max-height: 200px;
    min-width: 357.5px;
    min-height: 200px;
}

form {
    padding: 0px 0px 40px 0px;
    margin: 60px 0px 0px 0px;
}

#fname, #lname, #email, #mnumber {
    min-width: 357.5px;
}

.customer-form {
    display: flex;
    justify-content: center;
}
/*styling for forms*/

#bakery-hours > p {
    text-align: center;
}

.cake-display > img {
    max-width: 300px;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 10px 0px 10px 0px;
}