@font-face {
    font-family: "Davids3x3";
    src: url(font/Vols3x3.ttf);
}

body {
    background-image: url("/davidpages/bg/floral-wallpaper.jpg");
    background-size: 100%
}

#bg-wash {
    background-color: rgb(100, 255, 224);
    /* background-color: rgb(22, 202, 205); */
    /* background-color: rgb(75, 150, 255); */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;

    opacity: 70%;

    z-index: -1;
}

#davids-room {
    /* font-family: 'Davids3x3';
    font-weight: normal;
    font-size: 7em;

    margin-top: -0.7em;
    margin-bottom: 0;
    padding: 0;
    line-height: 0.2em; */

    /*rotate: -3.23deg;*/
    /* MORE... */
    rotate: -5.23deg;

    color: darkblue;
    text-transform: capitalize;
    text-decoration: mediumturquoise wavy underline;
    filter: drop-shadow(0 0.19em 0.13em darkslategray);

    margin-bottom: calc(5%);

    /* so bounding box doesnt extend to fill width */
    display: inline-block;
}

#davids-room:hover {
    text-transform: lowercase;
}

#poem {
    margin: 20px;
    justify-self: center;

    border: 20px dotted khaki;
    border-radius: 10px;

    padding: 10px;
    background-color: skyblue;

    rotate: -11deg;
}

/* card headings */
h3 {
    text-align: center;
}

/* MUSIC BUTTON */
.music-button {
    /* it must be hidden until I actually make some music for it SUBSTANCE THEN FRAME */
    display:none;

    margin: 30px;
    padding: 5px;
    border: 3px outset var(--link-color);
    background-color:white;

    color: darkcyan;
}
.music-button:hover {
    background-color:lightgreen;
    /* filter: brightness(150%); */
    color: var(--link-hover-color);
}
.music-button:active {
    background-color:cyan;
    border: 3px inset var(--link-color);
}