html,
body {
background-color: #f5f7f9;
font-size: 10px; /* Makes 1rem = 10px */
}

label {
color: white;
font-size: 1.5rem;
}
input {
width: 4rem;
height: 4rem;
cursor: pointer;
}

.confetti-container {
user-select: none;
z-index: 10;
}
.confetti {
position: fixed;
left: 0;
right: 0;
display: flex;
/* width: 600px; */
/* height: 600px; */
/* overflow: hidden; */
}

.confetti .square {
width: 1rem;
height: 1rem;
background-color: var(--bg);
transform: rotate(-140deg);
}

.confetti .rectangle {
width: 1rem;
height: 0.5rem;
background-color: var(--bg);
}

.confetti .hexagram {
width: 0;
height: 0;
border-left: 0.5rem solid transparent;
border-right: 0.5rem solid transparent;
border-bottom: 1rem solid var(--bg);
position: relative;
}

.confetti .hexagram:after {
content: "";
width: 0;
height: 0;
border-left: 0.5rem solid transparent;
border-right: 0.5rem solid transparent;
border-top: 1rem solid var(--bg);
position: absolute;
top: 0.33rem;
left: -0.5rem;
}

.confetti .pentagram {
width: 0rem;
height: 0rem;
display: block;
margin: 0.5rem 0;
border-right: 1rem solid transparent;
border-bottom: 0.7rem solid var(--bg);
border-left: 1rem solid transparent;
transform: rotate(35deg);
position: relative;
}
.confetti .pentagram:before {
content: "";
width: 0;
height: 0;
display: block;
border-bottom: 0.8rem solid var(--bg);
border-left: 0.3rem solid transparent;
border-right: 0.3rem solid transparent;
transform: rotate(-35deg);
position: absolute;
top: -0.45rem;
left: -0.65rem;
}
.confetti .pentagram:after {
content: "";
width: 0rem;
height: 0rem;
display: block;
border-right: 1rem solid transparent;
border-bottom: 0.7rem solid var(--bg);
border-left: 1rem solid transparent;
transform: rotate(-70deg);
position: absolute;
top: 0.03rem;
left: -1.05rem;
}

.confetti .dodecagram {
background: var(--bg);
width: 0.8rem;
height: 0.8rem;
position: relative;
}

.confetti .dodecagram:before {
content: "";
height: 0.8rem;
width: 0.8rem;
background: var(--bg);
transform: rotate(30deg);
position: absolute;
top: 0;
left: 0;
}
.confetti .dodecagram:after {
content: "";
height: 0.8rem;
width: 0.8rem;
background: var(--bg);
transform: rotate(60deg);
position: absolute;
top: 0;
left: 0;
}

.confetti .wavy-line {
position: relative;
}
.confetti .wavy-line::after,
.confetti .wavy-line::before {
content: "";
height: 1rem;
width: 8rem;
background-size: 2rem 1rem;
position: absolute;
left: -9rem;
transform: rotate(90deg);
}

.confetti .wavy-line::before {
background-image: linear-gradient(
45deg,
transparent,
transparent 50%,
var(--bg) 50%,
transparent 60%
);
top: 1rem;
}
.confetti .wavy-line::after {
background-image: linear-gradient(
-45deg,
transparent,
transparent 50%,
var(--bg) 50%,
transparent 60%
);
}

.confetti i {
width: 3rem;
height: 3rem;
margin: 0 0.2rem;
animation-name: confetti;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-duration: calc(300s / var(--speed));
}

.confetti i:nth-child(even) {
transform: rotate(90deg);
}

@keyframes confetti {
0% {
transform: translateY(-100vh);
}

100% {
transform: translateY(100vh);
}
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

}

header, footer {
    background-color: #b6e0ec;
    color: #000000;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 2;
}

header {
    top: 0;
}

footer {
    bottom: 0;
}

.content {
    margin-top: 7%; /* Adjust according to your header height */
     /* Adjust according to your footer height */
     padding-top: 80px;
     padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.centered-image {
    max-width: 15%; /* Ensure the image doesn't exceed its container */
     /* Ensure the image doesn't exceed the viewport height */
}

p {
    margin-bottom: 20px;
}

.table-container {
width: 80%;
margin: auto;
overflow: hidden;
position: relative;
}

table {
    margin: auto;
    width: 50%;
    border-collapse: collapse;
    border-spacing: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    position: relative;
    z-index: 2; /* Ensure the table is above the background */
}

th, td {
padding: 15px;
text-align: center;
border-bottom: 1px solid #ddd;
font-size: 15px;
}

th {
background-color: #02bbe7;
color: #fff;
}

tr:nth-child(even) {
background-color: #f2f2f2;
}

tr:hover {
background-color: #e0e0e0;
}

.button {
display: inline-block;
padding: 15px 30px;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration: none;
border: 2px solid #02bbe7;
color: #02bbe7;
background-color: #fff;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
z-index: 2;
}

.button:hover {
background-color: #02bbe7;
color: #fff;
}

.container {
  padding-top: 4%;
  width: 50%;
  margin: 0 auto;
}
