/* common.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 0;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    transition: color 0.3s ease;
    .dontwrap {
        white-space: nowrap;
      }
}

nav ul li a:hover {
    color: #00ffff;
}

main {
    margin-top: 80px; /* Adjust based on header height */
    padding: 20px;
}

body {
    background-color: #222222;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}