body, html {
    height: 100%;
    margin: 0px;
    background-color:rgb(0,0,0);
    font-family: "Bubblegum Sans", sans-serif;
    font-optical-sizing: auto;
}
.topnav {
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid #030303;
    background-color: #222;
    position: fixed;
    width: 99.5%;
    z-index: 3;
    top: 0px;
  }
  
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
.topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
.topnav a.active {
    background-color: purple;
    color: white;
  }

.bg-image
{
    background-color: rgb(0,0,0);
    background-image: url("assets/background1.png");
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
    position:fixed;
    top: 55px;
    bottom: 25px;
    width: 100%;
    overflow-y: scroll;
}
.grid-container 
{
    display: grid;
    margin: 10px 10px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 49.69%));
    gap: 10px;
}
.grid-header
{
  text-align: center;
  font-size: 90px;
  color:#f2f2f2;
  margin: 10px 10px;
  background-color: #214b77d6;
  border: 4px solid #2c17764b;
  box-sizing: border-box;
}
.grid-item 
{
  text-align: center;
    color:#f2f2f2;
    background-color: #214b77d6;
    padding: 5px;
    border: 4px solid #2c17764b;
    box-sizing: border-box;
}
.bg-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  position: fixed;
  inset: 0px;
  width: fit-content;
  height: fit-content;
  max-width: 100vw;
  max-height: 120dvh;
  margin: auto;
  z-index: 2;
  width: 80%;
  padding: 5px;
  text-align: center;
}
.copy{
  text-align: center;
  font-size: 20px;
  color:#f2f2f2;
  position: fixed;
  bottom: 0; /* Positions the element at the very bottom of the viewport */
  left: 0;   /* Aligns the element to the left edge of the viewport */
  width: 100%;
}
.bottom{
  position:fixed;
  bottom: 25px;
  left: 47%;
}