/* 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-color: LemonChiffon;
  font-size: 20px;
  font-family: "Unkempt";
  margin: 0;
  background-image: url("rosiebackgroundblue.png");
  background-repeat: repeat;
  background-attachment: fixed; 
  background-size: auto;
}
p, li {
  line-height: 1.2em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}
hr {
  border: solid thistle;
  border-width: 2px 0 0 0;
}
img {
  max-width: 100%;
}

}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}
h1, h2, h3, h4, h5, p{
  font-family: "Unkempt";
  color: MidnightBlue;
}
/*HEADER STYLE*/
#header {
  background-color: deeppink;
  padding: 0;
}
#header ul {
  list-style-type: none;
  padding: 0.3em 0;
  margin: 0;

}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  color: white;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}

li:has(details) {
    list-style-type: none;
}
}
.parent {
  position: relative;
  top: 0;
  left: 0;
}

.kitchenset {
  position: relative;
  top: 0;
  left: 0;
  border: 0px solid #000000;
}

.cake {
  position: absolute;
  top: 520px;
  left: 400px;
  border: 0px solid #000000;
}
/* From ribo.zone */
.imgtxtcake {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  position: absolute;
  top: 520px;
  left: 400px;
  border: 0px solid #000000;
}
.imgtxtcake span {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 2.5rem;
  color: lemonchiffon;
  font-family: "Unkempt";
  filter: drop-shadow(1px 1px 0 skyblue) 
    drop-shadow(-1px 1px 0 skyblue)
    drop-shadow(1px -1px 0 skyblue)
    drop-shadow(-1px -1px 0 skyblue);
}
.imgtxtcake:hover span, .imgtxt:focus span {
  opacity: 1;
}
.imgtxtcake:hover img, .imgtxt:focus img {
  /* add hover effects like transform or filter to your images here! */
}
.imgtxtbook {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  position: absolute;
  top: 170px;
  left: 570px;
  border: 0px solid #000000;
}
.imgtxtbook span {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 2.5rem;
  color: lemonchiffon;
  font-family: "Unkempt";
  filter: drop-shadow(1px 1px 0 skyblue) 
    drop-shadow(-1px 1px 0 skyblue)
    drop-shadow(1px -1px 0 skyblue)
    drop-shadow(-1px -1px 0 skyblue);
}
.imgtxtbook:hover span, .imgtxt:focus span {
  opacity: 1;
}
.imgtxtbook:hover img, .imgtxt:focus img {
}

.gohometxt {
  position: absolute;   
  top: 50px;            
  left: 50px;
  width: fit-content;
  height: fit-content;
  display: inline-block;
}
.gohometxt span {
  position: relative;   
  display: block;
  z-index: 2;
  color: lemonchiffon;
  font-family: "Unkempt";
  filter: drop-shadow(1px 1px 0 skyblue) 
    drop-shadow(-1px 1px 0 skyblue)
    drop-shadow(1px -1px 0 skyblue)
    drop-shadow(-1px -1px 0 skyblue);
}

.gohometxt a, 
.gohometxt a:visited, 
.gohometxt a:hover {
  font-size: 2.5rem;
  color: lemonchiffon;
  text-decoration: none;
  text-shadow: 
    1px 1px 0 skyblue,
    -1px 1px 0 skyblue,
    1px -1px 0 skyblue,
    -1px -1px 0 skyblue;
}

.content {
  float: right;
  margin-right: 5%;   
  margin-top: 5%;
  width: 40%;
  padding: 5px;
  outline-color: MidnightBlue;
  outline-style: dashed;
  outline-width: 6px;
  outline-offset: 0;
  background-color: skyblue;
  height: 600px;
  overflow: scroll;
}