* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: rgb(0, 0, 0);
  background-color: rgb(152, 53, 218);
  padding-top: 60px;
}

nav {
  position: fixed; /* Fixes position relative to viewport */
  top: 0;          /* Sticks to the top */
  width: 100%;     /* Spans entire width */
  z-index: 9999; 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.5rem;
  border-bottom: solid 1px #aaa;
  background-color: #eee;
}

nav a {
  
  display: inline-block;
  min-width: 9rem;
  padding: 0.5rem;
  border-radius: 0.2rem;
  border: solid 1px #aaa;
  text-align: center;
  text-decoration: none;
  color: #555;
}

nav a[aria-current='page'] {
  color: rgb(0, 0, 0);
  background-color: #d4d4d4;
}

main {
  padding: 1rem;
}

h1 {
  font-weight: bold;
  font-size: 1.5rem;
}

Table, th, td{
  border: 1px solid black;
}

.styled {
  border: 0;
  line-height: 2.5;
  padding: 0 20px;
  font-size: 1rem;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 1px black;
  border-radius: 10px;
  background-color: tomato;
  background-image: linear-gradient(
    to top left,
    rgb(0 0 0 / 0.2),
    rgb(0 0 0 / 0.2) 30%,
    transparent
  );
  box-shadow:
    inset 2px 2px 3px rgb(255 255 255 / 0.6),
    inset -2px -2px 3px rgb(0 0 0 / 0.6);
}

.styled:hover {
  background-color: red;
}

.styled:active {
  box-shadow:
    inset -2px -2px 3px rgb(255 255 255 / 0.6),
    inset 2px 2px 3px rgb(0 0 0 / 0.6);
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.button {
 Display: block;
}

.container {
  width: 100%;
  padding: 10px;
}

/* Tablet styles (screens larger than 768px) */
@media screen and (min-width: 768px) {
  .container {
    width: 80%;
    margin: 0 auto; /* Center the layout */
  }
}

/* Desktop styles (screens larger than 1024px) */
@media screen and (min-width: 1024px) {
  .container {
    width: 1200px; /* Fixed or larger width for wide screens */
  }
}

img {
  max-width: 100%;
  height: auto; /* Maintains aspect ratio */
}

.row {
  display: flex;
  flex-wrap: wrap; /* Allows items to drop to the next line on mobile */
}

.column {
  flex: 1 1 300px; /* Grow, shrink, and base width of 300px */
  padding: 1rem;
}