* {
    margin: 0;
    padding: 0;
    color: #4e4e4e;
    list-style-type: none;
    box-sizing: border-box;
    text-decoration: none;
}

h1 {
    color: rgb(255, 225, 0);
}


body {
    background: rgba(19, 14, 121, 0.509);
    background: radial-gradient(circle, rgba(118, 121, 14, 0.556) 13%, rgba(172, 199, 53, 0.504) 87%);  
}

nav {
    display: flex;
    justify-content: center;   
    background-color: #4e4e4e;
    width: 100%;
}

ul a {
    color: bisque;
}

nav ul {
    display: flex;
    width: 100%;
    color: beige;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 5px;
    
}

section {
    position: relative;
}

section h1 {
    margin: 25px;
    display: none;
}

article {
    position:relative;
    display: flex;
    justify-content: center;
    margin: 25px;
    
    
}


section:hover h1{
    z-index: 1;
    position: absolute;
    display: block;
    background-color: #4e4e4e;
    
}


footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: rgb(202, 180, 176);
}

footer a:hover {
    text-align: center;
    width: 30px;
    background-color: violet;
    border-radius: 30%;
}