@font-face {
    font-family: Airstrike;
    src: url("airstrike.tff");
}

h1 {
    font-family: Airstike, sans-serif;
    color: white;
    text-align: center;
    text-shadow: 0px 0px 5px #000000;
    font-size: 4em;
    padding-top: 0;
    margin: 0;
}
h2{
    font-family: Airstike, sans-serif;
    }

#navbar {
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    display: flex;
    justify-content: center;
    background-color: black;
    position: relative;
    z-index:1000;
}

#navbar a {
    text-decoration: none;
    color: #ffffff;
    width: 130px;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #000000;
}

#navbar a:hover {
    border-bottom: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

#footer {
    color: white;
    padding: 15px;
    background-color: black;
    text-align: center;
}

body {
    margin: 0;
    background-color: gray;
}


#navbar ul{
        list-style: none;
        margin:0;
        padding: 0;
    }
    
    #top-menu{
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    #navbar a{
        display: block;
    }
    #navbar li{
        list-style: none;
        background-color: rgb(0, 0, 0);
        position: relative;
    }
    #navbar li:hover > ul{
        display:block;
    }
    #top-menu ul{
        position: absolute;
        display: none;
    }
    #gray:hover{
        background-color: gray;
    }
    #navbar li:hover >a{
        background-color: gray;
    }
    #navbar .active {
    border-bottom: 2px solid rgb(254, 254, 254);
    color: rgb(253, 253, 253);
    }