
body {
    font-family: 'Seymour One', sans-serif; /* Apply Seymour One font */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
}

nav {
    position: fixed; /* Fix the navbar position */
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0); /* Set the background color to fully transparent */
    color: white;
    padding: 10px 0;
    text-align: center;
    z-index: 1000; /* Ensure the navbar stays above other content */
}

nav a {
    text-decoration: none;
    color: green;
    padding: 10px 20px;
    display: inline-block; /* Added to align links side by side */
    font-weight: bold;
}

nav a:hover {
    background-color: #555;
}




.home {
    background-color:#A34343; /* Coffee bean color */
    color: white;
    padding: 10px 20px;
    border: 2px solid silver; /* Silver border */
    border-radius: 5px;
    /* Add other button styles as needed */

}

.home img {
    width: 20px; /* Adjust the width of the image */
    margin-right: 5px; /* Add some spacing between the text and the image */
    vertical-align: middle; /* Align the image vertically with the text */
}

.roast {
    background-color: #6C3428; /* Coffee bean color */
    color: white;     
    padding: 10px 20px;
    border: 2px solid silver; /* Silver border */
    border-radius: 5px;
    /* Add other button styles as needed */

}

.roast img {
    width: 20px; /* Adjust the width of the image */
    margin-right: 5px; /* Add some spacing between the text and the image */
    vertical-align: middle; /* Align the image vertically with the text */
}

.hours {
    background-color: #795458; /* Coffee bean color */
    color: white;
    padding: 10px 20px;
    border: 2px solid silver; /* Silver border */
    border-radius: 5px;
    /* Add other button styles as needed */

}

.hours img {
    width: 20px; /* Adjust the width of the image */
    margin-right: 5px; /* Add some spacing between the text and the image */
    vertical-align: middle; /* Align the image vertically with the text */
}


main {
    flex: 1;
    display: flex;
    flex-direction: column; /* Ensure divs stack vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
}

