body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #333;
    color: #f9f9f9;
    
}

.container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    background-color: #444;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.container img {
    width: 50%;
    border-radius:8px;
}

h1, h2 {
    color: #e67e22;
    
}


ul {
    padding-left: 20px;
    list-style-type: none;
}

li {
    margin-bottom: 8px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

li a {
    color: black;
    text-decoration: none;
}

li a {
    color: black;
    text-decoration: none;
}

form {
    padding: 10px;
    margin: 10px;
}

input[type="text"] {
    flex: 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

button[type="submit"] {
    padding: 10px 20px;
    border: none;
    background-color: #e67e22;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.directions li {
    margin-bottom: 10px;
}

.footer {
    padding: 10px 20px;
    text-align: center;
    font-size: 0.9em;
    background-color: #444;
    border-radius: 8px 8px 0px 0px;
    color: #acacac;
    position: absolute;
    width:100%;
    bottom:0px;

}

.theme-button {
    display: inline;
    margin: 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 32px;
    float: right;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e67e22;
    padding: 10px 20px;
    color: white;
    border-radius: 0px 0px 8px 8px;
    text-decoration: none;
}

/* Yes, yes this is stupid thank you for noticing */
.navbar ul li a {
    display: flex;
    justify-content: space-between;
    color: white;
    text-decoration: none;
}

.navbar ul li {
    margin: 10px;
    padding: 10px;
    float: left;
}

.nav-title {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-title a {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color:white;
}

.nav-title a:hover {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color:white;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.menu-button {
    margin-right: 15px;
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
}

.add-button {
    text-align: right;
    
    
}