@font-face {
  font-family: "BigBlueTerm437NerdFont";
  src: url("/assets/fonts/BigBlueTerm437NerdFont-Regular.ttf");
}

* {
  box-sizing: border-box;
}

.button {
  background-color: rgb(102, 255, 0);
  padding: 12px 24px;
  border: 2px solid white;
  border-radius: 4px;
  cursor: pointer;
            
  /* Smooth transition animation */
  transition: background-color 0.3s ease; 
}

.button:hover {
  background-color: rgb(0, 100, 0);
}

dialog:modal {
  position: fixed;
  top: 40px;
  left: 50%; 
  transform: translateX(-50%);
  margin: 0;

  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  
  display: flex;
  flex-direction: column;
  overflow-y: auto;

  padding: 20px;
  border-radius: 8px;
  border: 2px solid white;
  background-image: url("/assets/bgs/background9.png");
}

dialog:modal::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay {
  display: none;
  background-color: rgba(0, 0, 0, 1);
  z-index: 10;
    flex-direction: column;
  padding: 0;
  border: none;
  border-radius: 8px;
}

.modal.open,
.overlay.open {
  display: block;
}

.content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 100%;
  margin-top: 20px;
  border: 2px solid rgb(255, 0, 255);
  display: grid;
}
th {
  color: #00ffff;
}
td {
  color: #ffffff;
}
table,
td,
th {
  border: 3px solid black;
  border-collapse: collapse;
  text-align: center;
}
td,
th {
  padding: 5px;
}
e {
  font-size: 10px;
}

body {
  text-align: center;
  font-family: "BigBlueTerm437NerdFont", monospace;
  background-image: url("/assets/bgs/background8.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  min-height: 100vh;
}

/* texto */

h1 {
  color: rgb(255, 192, 203);
  font-size: 36px;
}

h2 {
  color: rgb(193, 59, 213);
  font-size: 24px;
}

a {
  color: rgb(0, 255, 255);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:link {
  color: rgb(0, 255, 255);
  text-decoration: underline;
}

a:hover {
  color: rgb(0, 0, 255);
}

p {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
