@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

html{
    background-image: url("bg.gif");
    background-color: black;    /*background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

nav{
    color: #25F748;
    font-family: 'Montserrat', sans-serif;
    margin: auto;
    width: 25%;
    margin-top:15%;
}

li{
    display: inline;
    padding: 10px;
    margin: 5px;
    border: 2px solid #25F748;
    border-radius: 15px;
}

li:hover{
    padding:15px;
}

a, a:visited, a:link, a:hover{
    color: #25F748;
    text-decoration: none;
}