@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: right;

    /* width: 100%; */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;

    margin-bottom: 10px;
    z-index: 20;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
}



.footer{
    background-color: #333;
    color: #fff;
    padding: 10px;
    /* width: 100%; */
    height: 50px;
    text-align: center;
}
