@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&display=swap');

body{
  background-color: #B63836;
  background-image: url("/rosetile.png");
  background-size: 350px 350px;
}

.box {
  border: 3px dashed white;
  padding: 30px;
  width: 600px;
    margin-left: auto;
  margin-right: auto;

}

.grid-container {
  display: grid;
  grid-template-areas:
    "col1"
    "col2"
    "col3";
}

#g1 {
  grid-area: col1;
  height: 100px;
   font-family: 'Leckerli One', cursive;
   font-size: 50px;
   color: white;
    text-shadow: 0px 0px 10px #e50014;
   align-content: center;
  background-image: url("/kittytitle.png");
  background-size: cover;
  border: none;
}

#g2 {
  grid-area: col2;
  height: auto;
  background-color: rgba(168, 22, 22, 0.30);
  font-family: 'Leckerli One', cursive;
     font-size: 20px;
   color: white;
    text-shadow: 0px 0px 10px #ff0022;
}
#g3{
  grid-area: col3;
  height: auto;
  background-color: rgba(168, 22, 22, 0.30);
  color: white;
  text-shadow: 0px 0px 10px #ff0022;
  font-size: 20px;
  font-family: "Delius Swash Caps", cursive;
  font-weight: 600;
  font-style: normal;
  
}
#g3 a{
  color: white;
  background-color: transparent;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  
}
h1{
  font-size:30px;
  color: white;
  font-family: 'Leckerli One', cursive;
  text-shadow: 0px 0px 10px #e50014;
  text-align: right;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:hover {

  color: white;
  background-color: transparent;
    text-shadow: 0px 0px 10px #850025;
}
