h1 {
    color: rgb(177, 228, 243);
    text-align: center;
    font-size: 50px;
    background-color: rgb(177, 245, 241);
    padding: 30px;
    text-shadow: 5px 5px 5px black;
}
h2 {
    color: rgb(177, 241, 252);
    font-size: 30px;
    margin: 30px;
}
p, ul {
    color: rgb(32, 80, 80);
    text-align: justify;
    background-color: rgb(240, 247, 247);
    padding: 30px;
    margin: 30px;
    box-shadow: 10px 5px 5px black;

    background-image: linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
    background-image: radial-gradient(rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255));

    border-color: rgb(177, 244, 253);
    border-width: 5px;
    border-style: solid;
    border-radius: 20px;
}

p.subheading {
    color: rgb(177, 217, 224);
    font-size: 20px;
    text-align: center;
}

p.jumpscare {
    img {
        opacity: 0;
        transition-delay: 0s;
        transition-duration: 2s;
    }
}
p.jumpscare:hover {
    img {
        opacity: 1;
        transition-delay: 2s;
        transition-duration: 0s;
    }
}


body {
    background-color: pink;
    /* background-image: url("https://static.vecteezy.com/system/resources/previews/037/130/624/non_2x/kiwi-fruit-seamless-pattern-in-cartoon-style-perfect-for-background-backdrop-wallpaper-and-cover-packaging-vector.jpg"); */
}

iframe, img {
    margin: auto;
    display: block;
}

h1 {
  font-family: "Imperial Script", cursive;
  font-weight: 400;
  font-style: normal;
}


nav {
    background-color: purple;
    padding: 5px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    a {
        display: inline-block;
        background-color: red;
        color: white;
        text-decoration: none;
        padding: 20px;
        margin: 5px;
        
        transition-duration: 500ms;
    }
    a:hover {
        background-color: blue;
        translate: 0 -5px;
    }
}

body {
    margin-top: 100px;
}