*{
    margin: 0;
    padding: 0;
}
body{
    background-image: url(/images/Background.png);
}
h2,h3{
    color: white;
    text-align: center;
}
@keyframes dance {
    0% {
        letter-spacing: 4px;
    }

    100% {
        letter-spacing: 40px;
    }

}
body>h1 {
    animation: dance 3s ease 0s infinite alternate both;
    background-color: rgba(0, 0, 0, 0.288);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 220%;
    letter-spacing: 20px;
}
nav {
    width: 100%;
    background-color: rgb(0, 0, 0,0.288);
    font-size: 110%;
    position: sticky;
    top: 1px;
    z-index: 9999;
}

nav ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav ul li {
    padding: 10px 20px;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

nav a:hover {
    cursor: pointer;
    color: white;
    background-color: rgb(16, 16, 90);
    border-radius: 5px;
}