body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000000;
    background-image: linear-gradient(to bottom, #171717, #000000);
    font-family: Arial, sans-serif;
}

.nav-button-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.nav-button {
    padding: 15px 30px;
    border: none;
    border-radius: 20px;
    background-color: #323232;
    color: #9c9c9c;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    line-height: normal;
    font-family: sans-serif;
}

.nav-button:hover {
    transform: scale(1.1);
}