* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Cambria;
}
body{
    background:url("background2.jpg");
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container{
    background:#242526;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width:800px;
    border:solid black 5px;
}
.container *{
    justify-content:center;
    text-align:center;
}

h2{
    font-size:40px;
}

.buttons{
    margin-top:50px;
}
.buttons *{
    justify-content:center;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}
nav {
    background-color: #333;
    overflow: hidden;
}

nav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

/* Make the navigation bar horizontal */
nav {
    display: flex;
    justify-content: space-between;
} 

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    overflow: hidden;
    z-index: 1000; /* Ensure it's above other elements */
}

/* Add some padding to the body so content is not hidden behind the fixed navbar */
body {
    padding-top: 40px; /* Adjust as needed based on your navbar height */
}