body{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    background: radial-gradient(ellipse at center, #16202c 0%, #000000 100%);
    color: white;
    margin: 0;
}

header{
    padding-top: 10px;
    background-color: black;
    position: sticky;
    top:0;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    width: 100%;
    /*text-align: center;*/
}

nav ul{
    margin-top: 5px;

    list-style-type:none ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 15px;
}

h1 {
    font-size: 2.5rem;
    margin: 0 25px ;
}



@media screen and (min-width: 80rem) {
 nav ul{
    margin-top: 48px;

    list-style-type:none ;
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 15px;
 }
}