/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("rainbow kittens on a mouse hunt in the garden cute and playful cat moments.jpg");
   background-repeat: no-repeat;
    background-size: cover;
  color: red;
  font-family: "Xanh-Mono";
}
p {
  text-align: center;
  color: blue;
}
h1 {
    display: table; /* keep the background color wrapped tight */
    margin: 0px auto 0px auto; /* keep the table centered */
    padding:5px;font-size:40px;background-color:green;color:#ffffff00;
}
audio::-webkit-media-controls {
            display: none;
        }
.hide {
  display: none;
}

.myDIV:hover + .hide {
  display: block;
  color: red;
}