* {
    margin: 0;
    padding: 0;
}
/* backgrounf image for main page*/
body {
    background-image: url("img/626A2848-2E01-459E-82B3-C723DBC4A208.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
}
/*drop down menu*/
nav {
    width: 100%;
    height: 60px;
    background-color: rgb(0, 0, 0);
}

nav p {
    font-family: Arial;
    color: rgb(255, 255, 255);
    font-size: 24px;
    line-height: 55px;
    float: left;
    padding: 0px 20px;
}

nav ul {
    float: left;
}

nav ul li {
    float: left;
    list-style: none;
    position: relative;
}

nav ul li a {
    display: block;
    font-family: Arial;
    color: rgb(255, 255, 255);
    font-size: 14px;
    padding: 11px 14px;
    text-decoration: none;
}

nav ul li ul {
    display: none;
    position: absolute;
    background-color: rgb(32, 32, 32);
    padding: 10px;
    border-radius: 4px 4px 4px 4px;
}

nav ul li:hover ul {
    display: block;
}


nav ul li ul li a {
    width: 135px;
    border-radius: 4px;
}

nav ul li ul li a {
    padding: 8px 14px;
}

nav ul li ul a:hover {
background-color: #585858;

}

nav ul li ul a{
    border-radius: 4px 4px 4px 4px;
}
/*logo*/
div{
    float: right;
}
/*git hub link*/
#gitpage{
    position: absolute;
    margin-top: 10px;
    margin-right: 65px;
    right: 0;
    top: 0;
}
    /*skip nav*/
    #skipnav {
        color: white;
        text-decoration: none;
        background: #202020;
        padding: .5rem 1.5rem;
        border-radius: 0 0 .25rem .25rem;
        position: absolute;
        left: 0.5rem;
        transform: translateY(-120%);
        transition: transform 200ms ease-in;
    }
    #skipnav:focus {
    transform: translateY(0);
    }
    html{
        scroll-behavior: smooth;
    }
