html{
    scroll-behavior:auto;
}

body{
    font-family: "Microsoft Sans Serif", "MS Sans Serif", Arial, sans-serif;  
    margin: 0;
    background-color:darkblue;
    color: white;
}

#nav{
    position:sticky;
    top: 0;
    z-index: 100;
    background-color: grey;
    width: 100% - 2px;
    padding: 15px 0px 15px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    border: 2px groove;
}
#nav a{
    color: black;
    text-decoration: none;
    background-color: darkgray;
    padding: 10px;
    border: 2px outset;
}
#nav a:hover{
    border: 2px inset;
}

h1{
    text-decoration: underline;
    font-size: 40px;
}
p{
    font-size: 25px;
}

section{
    scroll-margin-top: 100px;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 100px;
}

#Home{
    margin-top: 0;
}

#Gallery{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

}
#Galery img{
    height: auto;
}
#Gallery p{
    padding-top: 50px;
}
#useless{
    margin-bottom: -50px;
}

#Button h1{
    margin-bottom: 40px;
}
#Button a{
    background-color: darkgray;
    color: black;
    text-decoration: none;
    padding: 10px;
    margin-left: 10px;
    border: 2px outset;
}
#Button a:hover{
    border: 2px inset;
}

#Very img{
    width: 40%;
    margin-top: 50px;
    margin-left: 100px;
    margin-bottom: 50px;
}