/* This stylesheet was made by Jesse Rinyu on April of 2026 */

body {
  background-color: #f8f9e3; text-align: center;
    padding: 15px;
      overflow-x: hidden;
}
h1 {
  color: #df3f57; font-family:arial, helvetica, sans-serif;
}
h2 {
  color: #807a3e; font-family:arial, helvetica, sans-serif;
}
h3 {
  color: #072e40; font-family:arial, helvetica, sans-serif;
}
p {
  color: #072e40; font-family:Verdana, sans-serif;
}
pre {
  color: #072e40; font-family:Verdana, sans-serif;
}
div {
    font-family:arial, helvetica, sans-serif;
}
div1 {
  background-color: #f8f9e3;
  width: 500px;
  border: 15px solid pink;
  padding: 50px;
  margin: 20px;
}
link {
  color: #072e40; font-family:arial, helvetica, sans-serif;
}
a:link {
  color: #072e40; font-family:arial, helvetica, sans-serif; text-decoration: none;
}
a:hover {
  color: #ec6ea8; font-family:arial, helvetica, sans-serif; text-decoration: underline;
}
head {
  position: center; align: center;
}
/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

/* Main CSS */
.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.grid-wrapper .wide {
  grid-column: span 2;
}
.grid-wrapper .tall {
  grid-row: span 2;
}
.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}
.grid-wrapper .box {
  grid-column: span 1.5;
  grid-row: span 2;
}

/* ===== MOBILE RESPONSIVE ADDITIONS ===== */

/* Responsive nav bar */
nav, head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
  padding: 10px 8px;
  line-height: 2;
  font-family: arial, helvetica, sans-serif;
  text-align: center;
}

nav a, head a {
  white-space: nowrap;
  font-size: clamp(11px, 2.5vw, 14px);
}

/* Fluid iframes */
iframe {
  max-width: 100% !important;
}

/* Body overflow fix */

/* Mobile tweaks */
@media (max-width: 600px) {
  nav, head {
    font-size: 12px;
    gap: 2px 8px;
  }
  h1 { font-size: clamp(20px, 6vw, 36px); }
  h2 { font-size: clamp(16px, 5vw, 28px); }
  pre { white-space: pre-wrap; word-break: break-word; }
}
