/* styles.css */

/* Basic CSS for menu */
.menu {
    list-style-type: none;
    margin: 0 auto; /* Centering the menu */
    padding: 0;
    overflow: hidden;
    background-color: #d42359;
    display: table; /* Making the menu a table to center it */
}

.menu li {
    float: none; /* Resetting the float */
    display: inline-block; /* Displaying menu items in a line */
}

.menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu li a:hover {
    background-color: #ff004e;
}

/* CSS to center the content */
body {
    display: flex;
    min-height: 10vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}

main {
    text-align: center;
}
