/* 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 {
  
  font-family: Verdana;
  color: black;
  /* background-image: url("https://t4.ftcdn.net/jpg/03/27/60/59/360_F_327605968_AfM33d4nSXsZXU78LBoRwk7mK7d9syMt.jpg"); */
  background-image:  url("/pics/back.png");
  background-color: #FFFFFF;
  cursor: url("/Dragon-Eye2.png"), auto;
}

div {
    /* width: 240px; height: 180px; margin: 10% auto; */
    border-style: solid;
    border: dimgray 5px solid;
    border-radius: 5px;
    background-color: dimgray;
    padding-left: 25px;
   
}

img {
  border-radius: 8px;
}

#char {
  color: SlateBlue;
  background-color: #292929;
  border: #292929 5px solid;
  border-radius: 5px;
}


h1 {
  color: SlateBlue;
  text-align: center;
  background-color: #292929;
  border: #292929 5px solid;
  border-radius: 5px;
}

.blendin {
  color: SlateBlue;
  text-align: center;
  background-color: dimgray;
  border: dimgray 5px solid;
  border-radius: 5px;
}

.container {
  position: relative;
  width: 100%
}

.overlayimage {
  display: block;
  margin: auto;
  }

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #292929;
  overflow: hidden;
 
  height: 0;
  transition: .5s ease;

}

.container:hover .overlay {
  height: 20%;
}

.overlaytext {
  white-space: nowrap; 
  color: SlateBlue;
  font-size: 20px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
    border-style: solid;
  border: #292929 5px solid;
  border-radius: 5px;
  background-color: #292929;
  padding-left: 25px;
}

.centertxt {
  text-align: center;
}

.row {
  display: flex;
}

.column {
  flex: 50%;
}



.column3 {
  flex: 33%;
}

.smallerimg {
  width: 75%;
  height: 75%;
}

.fixflowers{
    position:fixed;
    bottom: 1px;
    left:50%;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

/* Links */
a:link {
  color: SlateBlue;
  background-color: #292929;
  
}

a:visited {
  color: SlateBlue;
  background-color: #292929;
  

}

.centerimg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.button {
  background-color: #292929;
  color: SlateBlue;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  
}

li {
 font-size: 24px; 
}

ol{
  font-size: 24px; 
}


ul { 
  font-size: 24px; 
  list-style-type: "✨"; } 



