 .content {
  max-width: 1000px;
  margin: auto;
}

* {
  box-sizing: border-box;
}


body {
font-family: "Quicksand", "BlitzMain", Arial, Helvetica, sans-serif;
  margin: 0;
  background: #2f2442;
  background-image: url("https://makomart.neocities.org/purplesideorderpattern.png");
  cursor: url("https://makomart.neocities.org/4-purpleFLIPPED.png"), auto;
  }

.header {
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: center;
  background: #e18dcb;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px 10px 10px 10px;
  border: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #783a8d;
  color: white;
  


}

.header h1 {
  font-size: 40px;
  font-family: "BlitzMain", Arial, Helvetica, sans-serif;
}

.navbar {
  width: 100%;
   margin-bottom: 10px;
  background-color: #603b7f;
  overflow: auto;
  border-radius: 10px 10px 10px 10px;
  border: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #783a8d;
  
}

.navbar a {
  float: left;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 17px;
  width: 20%;
  text-align: center;
}

.navbar a:hover {
  background-color: #783a8d;
}

.active {
  background-color: #c760bc;
}

@media screen and (max-width: 600px) {
  .navbar a {
    float: none;
    display: block;
  }
}

.octobruh {
width: 100%;
height: 100%;
object-fit: fill;
}

.pool {
  height: 15%;
}

.span {
 align-self: flex-end;
}

.footer {
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 20px;
  text-align: right;
  font-size: 13px;
  background: #603b7f;
  color: white;
 border-radius: 10px 10px 10px 10px;
  border: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #783a8d;
  
}

.container {
  display: grid;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  text-wrap: wrap;
  overflow-wrap: break-word;
  grid-template-areas: 
  "main main sidebar"
  "main main sidebar"
  "main main sidebar2"
  "main main sidebar2"
  "bottom bottom bottom"
    
  
}


.main {
  grid-area: main;
  padding: 20px;
  background-color: #fdf1f2;
  border-radius: 10px 10px 10px 10px;
  border: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #783a8d;
  max-height: 520px;
 
}
.sidebar1 {
  grid-area: sidebar;
  padding: 20px;
  background-color: #fdf1f2;
  border-radius: 10px 10px 10px 10px;
  border: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #783a8d;
  

}

  .sidebar2 {
  grid-area: sidebar2;
  background-color: #fdf1f2;
  border-radius: 10px 10px 10px 10px;
  border: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #783a8d;
    
}

  .bottom {
  grid-area: bottom;
  padding: 20px;  
  background-color: #fdf1f2;
  border-radius: 10px 10px 10px 10px;
  border: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #783a8d;
    
}

@media only screen and (max-width: 600px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "sidebar"
      "sidebar2"
      "bottom"
  }
  
@media only screen and (max-width: 600px) {
.main {
  max-height: 100%;
}
  
