body {
    font-family: "Quicksand", sans-serif;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    position: absolute;
    width: 100%;
    box-sizing: border-box ;
}

header ul {
    display: flex;
}

header li {
    margin-left: 20px ;
}

#page-logo a {
    padding: 10px;
    font-family: "Oleo Script", serif;
    color: rgb(250, 247, 81);
    font-size: 50px;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgb(0,0,0);
}

#page-logo a:hover {
    color: red;
    background-color: transparent;
    text-shadow: 3px 3px 3px rgb(198, 189, 189);
}

ul {
   list-style: none;
   margin: 0;
   padding: 0; 
}

header a {
    color: yellow;
    text-decoration: none;
    font-size: 20px;
    padding: 12px;
    text-shadow: 2px 2px 4px black;
    border-radius: 6px;
}

header a:hover {
    color: rgb(231, 245, 38);
    background-color:rgb(195, 195, 149) ;

}

footer {
    background: linear-gradient(45deg, rgb(32, 32, 32),black);
    padding: 36px;
}

footer ul {
    display: flex;
    justify-content: center; 
}

footer li {
    width: 80px;
    height: 80px;
    margin: 0 50px;
}

footer img {
    width: 100%;
    height: 100%;
}