h1 {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 80px;
    text-shadow: 6px 6px 12px rgb(204, 142, 61);
    font-family: Pristina;
}

body {
    background-color: blanchedalmond;
    background-image: linear-gradient (rgb(221, 171, 171), rgb(255, 255, 255), rgb(221, 171, 171));
}

p, ul {
    color: rgb(0, 0, 0);
    background-color: rgb(140, 180, 160) ;
    padding: 20px;
   font-size: 20px;
    box-shadow:2px 2px 5px black;
    font-family: Papyrus;
}

body.Dogs {

color: black;

        background-image: url ("https://img.freepik.com/premium-photo/happy-puppies-playing-together_863013-105319.jpg");
    
    h1 {
        text-shadow: 6px 6px 12px rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        font-size: 70px;
    }

    p, ul {
        background-color: rgb(185, 221, 238) ;
    }
}


nav {
    background: rgb(250, 190, 200);
    padding: 10px;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
}

a {

    display: inline-block;

    background: rgb(255, 223, 228);
    padding: 10px;
    margin: 5px;
    display: inline-block;

    text-decoration: none;
    color: black;

    transition-duration: 400ms;
}

a:hover {
    background: rgb(255, 167, 201);
    text-decoration-color: white;
    translate: 0-5px;
}
 
h1 {
    margin-top: 100px; 
}