body {
  background-image: url('');
  background-repeat: no-repeat;
  background-color: #F0A06C;
  color: black;
  font-family: "Comic Neue", "LXGW WenKai Mono TC", Verdana;
  text-align: justify;
  justify-content: center;
  font-size: 12px;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.homebutton {
  position: fixed;
  bottom: 0; 
  right: 0;  
  z-index: 999;
  }
  

/* tablet/phone */
@media(max-width:800px){
  body {
    grid-template-columns: 1fr;
    }
  .frontdecal {
    display: none;
    }
}


/* Contents */
.content {
  background-color: #FFB98A;
  width: 70vw;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: 
  "nav nav"
  "main main"
  "footer footer"
  ;
  }
  
.full {
  grid-column: span 2;
  }
  
.half {
  grid-column: span 1;
  padding-left: 5px;
  padding-right: 5px;
  justify-content: center;
  font-size: 15px; 
  text-align: center;
  }
  
.grid-container {
  margin: 0 auto;
  width: 60vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  justify-content: center;
  }
  
nav {
  grid-area: nav;
  position: sticky;
  top: 0;
  padding: 15px;
  background: yellow;
  z-index: 1000;
  }

main {
  grid-area: main;
  display: grid;
  grid-template-columns: 1fr 1fr;
  }

footer {
  grid-area: footer;
  color: #BD482B;
  font-size: 15px;
  padding: 15px;
  margin-top: 10px;
  text-align: center;
  }
  
/* Menu Boxes */
.card {
  text-align: center;
  justify-content: center;
  display: grid;
  grid-template-rows: auto, auto;
  }
  
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 200px;
  color: #000;
  text-align: justify;
  margin: 10px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
  background: radial-gradient(circle at 100% 100%, #efffe2 0, #efffe2 8px, transparent 8px) 0% 0%/13px 13px no-repeat,
            radial-gradient(circle at 0 100%, #efffe2 0, #efffe2 8px, transparent 8px) 100% 0%/13px 13px no-repeat,
            radial-gradient(circle at 100% 0, #efffe2 0, #efffe2 8px, transparent 8px) 0% 100%/13px 13px no-repeat,
            radial-gradient(circle at 0 0, #efffe2 0, #efffe2 8px, transparent 8px) 100% 100%/13px 13px no-repeat,
            linear-gradient(#efffe2, #efffe2) 50% 50%/calc(100% - 10px) calc(100% - 26px) no-repeat,
            linear-gradient(#efffe2, #efffe2) 50% 50%/calc(100% - 26px) calc(100% - 10px) no-repeat,
            linear-gradient(#adff92 0%, #5ad455 44%, #378f1e 100%);
border-radius: 13px;
padding: 13px;
box-sizing: border-box;
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Headers */
h1 {
  font-family: "Protest Revolution", sans-serif;
  color: #BD482B;
  font-size: 50px;
  }
h2 {
  font-family: "Protest Revolution", sans-serif;
  color: #CF5D40;
  }
h3 {
  border: 1px;
  }


  
 /* Font */
.protest-revolution-regular {
  font-family: "Protest Revolution", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.comic-neue-light {
  font-family: "Comic Neue", cursive;
  font-weight: 300;
  font-style: normal;
}

.comic-neue-regular {
  font-family: "Comic Neue", cursive;
  font-weight: 400;
  font-style: normal;
}

.comic-neue-bold {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  font-style: normal;
}

.comic-neue-light-italic {
  font-family: "Comic Neue", cursive;
  font-weight: 300;
  font-style: italic;
}

.comic-neue-regular-italic {
  font-family: "Comic Neue", cursive;
  font-weight: 400;
  font-style: italic;
}

.comic-neue-bold-italic {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  font-style: italic;
}

.lxgw-wenkai-mono-tc-regular {
  font-family: "LXGW WenKai Mono TC", monospace;
  font-weight: 400;
  font-style: normal;
}







