body {
    background-color: black;
    background-image: 
        linear-gradient(skyblue 2px, transparent 1px),
        linear-gradient(90deg, skyblue 2px, transparent 1px);
    background-size: 90px 90px;
    background-attachment: fixed;
}
* {
    margin: 0;
    padding: 0;
}

.nav {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0; 
}
.nav p a {
    text-decoration: none;
}


.nav p .what:hover {
    filter: drop-shadow(0 0 10px green);
}

.nav p .mail {
    color: black;
    background-color: white;
    border: double;
}
.nav p .mail:hover {
    border: groove;
}

nav {
    background-color: skyblue;
    padding: 0.5rem;
    box-shadow: 0 0 15px skyblue
}
nav .ul {
    display: flex;
    justify-content: space-around;
}
nav .ul button {
    background-color: skyblue;
    height: 2.5rem;
    width: 6rem;
    font-family: elephant;
    color: currentColor;
    border: hidden;
}
nav .ul button:hover {
    border: aquamarine;
    border-radius: 0 0 50%;  
    transition: 0.3s ease-in;
    background-color: #bdebfb;
}
h1 {
    color: skyblue;
    text-align: center;
    margin-top: 10px;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 9999;
}
p {
   color: skyblue; 
    background-color: black;
}
mark {
    background-color: black;
    color: skyblue;
}
