@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&display=swap');

body{
  background-color: #ff5362;
  background-image: url("/heartstile.png")
}

.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: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  font-family: 'Leckerli One', cursive;
     font-size: 15px;
   color: white;
    text-shadow: 0px 0px 10px #e50014;
    padding: 20px;
    width: 620px;
}

#g2 {
  grid-area: col2;
  height: auto;
   font-family: 'Leckerli One', cursive;
   font-size: 30px;
   color: white;
    text-shadow: 0px 0px 10px #e50014;
   align-content: center;
  background-color: #db002a;
}

#g3{
  grid-area: col3;
  height: auto;
  background-color: rgba(255, 255, 255, 0.5);
  color: white;
  text-shadow: 0px 0px 10px #e50014;
}
#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;
}


.mini-box {
  border: 2px solid black;
  padding: 5px;
  margin: 5px;
  height: 100px;
  width: 100px;

}

.mini-grid-container {
  display: grid;
  width: 500px;
  padding:5px;
    align-content: center;

  grid-template-areas: "col1 col2 col3 col4";
}

#mg1 {
  grid-area: col1;
}

#mg2 {
  grid-area: col2;
}

#mg3 {
  grid-area: col3;
}
#mg4 {
  grid-area: col4;
}

.mini-boxlabel {
  border: 2px solid black;
  padding: 5px;
  margin: 5px;
  height: 15px;
  width: 100px;

}

.mini-gridlabel-container {
  display: grid;
  width: 500px;
  padding:5px;
    align-content: center;

  grid-template-areas: "col1 col2 col3 col4";
}

#mgl1 {
  grid-area: col1;
}

#mgl2 {
  grid-area: col2;
}

#mgl3 {
  grid-area: col3;
}
#mgl4 {
  grid-area: col4;
}

