body {
    font-family: monospace, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
}

.slogan,
h2 {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    font-size: 36px;
}

#logo-image {
    width: 200px;
    height: 135px;
    margin-left: auto;
    margin-right: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    z-index: 1000;
}

h4,
h5 {
    text-align: center;
    margin: 50px 0px 5px 0px;
}

h3 {
    color: darkkhaki;
    font-size: 24px;
    text-align: center;
    font-family: "Arima", system-ui;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

#home-page {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-family: "Lucinda console", "courier new", monospace;
    font-size: 18px;
}

.showprice {
    margin-top: 28px;
    font-size: 24px;
    background-color: cadetblue;
    color: aliceblue;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.confirmationText {
    color: cadetblue;
}

.error-display {
    text-align: center;
    margin: 8px;
    color: brown;
}

.main-menu ul {
    display: flex;
    justify-content: flex-start;
    list-style-type: none;
    padding: 0px;
    margin: 0;
}

.main-menu ul li {
    margin-right: 8px;
}

.main-menu ul li a {
    color: white;
    padding: 20px 4px;
    text-decoration: none;
    display: block;
    border-radius: 4px;
    font-size: 12px;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    background-color: #34495e;
    /* Highlight color for active and hover states */
}

.mainlogo {
    margin-top: 8px;
    width: 65px;
    height: 50px;
}

.page {
    position: relative;
    top: 90px;
}

form {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    padding: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form input,
form label,
form select,
form textarea,
form button,
#messagedisplay {
    display: block;
    width: 90%;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}

form input,
form select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

form input:focus,
form select:focus {
    border-color: #4CAF50;
    outline: none;
}

a:link {
    color: cadetblue;
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    margin-top: 14px;
}

a:visited {
    color: cadetblue;
}

#messagedisplay {
    height: 240px;
}

#footer {
    margin-top: 200px;
    width: 100%;
    background-color: #333;
    color: aliceblue;
    padding: 20px 0px;
    text-align: center;
    font-family: monospace;
}
