*{
    box-sizing: border-box;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
}


h1, h2 {
    color: white;
    text-align: center;
    background: linear-gradient(to right,rgba(138, 43, 226,0.5),rgba(0, 255, 0, 0.5));
    padding: 0.75rem;
    margin: 0.5rem;
    font-size: 1.25rem;
    border: 10px;
  

}

h3 {
    color: white;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(to right,rgba(138, 43, 226,0.5),rgba(0, 255, 0, 0.5));
    font-size: 1rem;
    padding: 0.5rem;
}


body {
    background:rgba(0, 0, 0,1);
    font-family: 'Courier New', Courier, monospace;
    padding: 1rem;

}

p {
    color: white;
    line-height: 1.6;
    font-weight: bold;
    text-align: justify;
    background: linear-gradient(to right,rgba(138, 43, 226,0.1),rgba(0, 255, 0, 0.1));
    font-size: 1rem;
    padding: 0.5rem;
    
}

table{
   
    border-spacing: 10px;
    text-align: center;
    transition: transform 0.3s;
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;


}
th{
  
    font-weight: bolder;
    color: white;
    text-transform: uppercase;
    background: linear-gradient(to right,rgba(138, 43, 226,0.5),rgba(0, 255, 0,0.5));
    text-align: center;
    padding: 0.75rem;
    min-width: 120px;
    margin: 10px;

}

th:hover{
    transform:none;
}


td{
    color:white;
    text-align: justify;
    font-weight: bolder;
    background:  linear-gradient(to right,rgba(138, 43, 226,0.2),rgba(0, 255, 0, 0.2));
    padding: 0.75rem;
    min-width: 120px;
    margin: 10px;
    transition: background-color 0.3s ease;
}

td:hover{
    background-color: orangered;
    transform:none;
}

.rubik-dirt-regular {
  font-family: "Rubik Dirt", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

.container{
display: grid;
list-style: none;
grid-template-columns: 1fr;
gap: 0.75rem;
width: 100%;
padding: 4%;
text-decoration: none;


}

.item{
font-weight: bold;
color: #00ff00;
text-decoration: none;
cursor: pointer;
background:linear-gradient(to right,rgba(138, 43, 226,0.1),rgba(0, 255, 0, 0.1));
text-align: center;
justify-content: center;
transition: background-color 0.3s ease;
display: inline-block;
padding: 0.75rem 1rem;
touch-action: manipulation;
-webkit-tap-highlight-color: rgba(0,0,0,0.1);

}

a{
    text-decoration: none;
}
a:hover{
    color: white;
    font-weight: bold;
    transform: none;
    background-color: orangered;
    cursor: pointer;
    display: inline-block;
    padding: 0.75rem 1rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    
}

.container_list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    list-style: none;
}

.cont_list_items{
    color: white;
    line-height: 1.5;
    background: linear-gradient(to right,rgba(138, 43, 226,0.1),rgba(0, 255, 0, 0.1));
    margin: 10px;
    font-weight: bold;
    justify-content: center;
    display: inline-block;
    padding: 0.75rem 1rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);

}

.center{
    text-align: center;
    background: none;
}

@keyframes bounce {
    0%{
        transform: scale (1);
    }
    50%{
        transform: scale(1.3);
    }
    100%{
        transform:scale(1);
    }
}

.pulse{
    animation: pulse 2s ease ;
}

@media (hover: hover) and (pointer: fine) {
th:hover { transform: scale(1.05); }
td:hover { transform: scale(1.15); background-color: orangered; }
a:hover  { transform: scale(1.1); }}

@media (min-width: 600px) {
html { font-size: 17px; }
.container { grid-template-columns: repeat(2,1fr); }
.container_list { grid-template-columns: repeat(2,1fr); }}

@media (min-width: 1000px) {
html { font-size: 18px; }
.container { grid-template-columns: repeat(4,1fr); padding: 5%; }}

@media (max-width: 599px) {
.pulse { animation-duration: 2.5s; }
th, td { padding: 0.6rem; min-width: 100px; }
}

a:focus, .item:focus, .cont_list_items:focus {
outline: 3px solid rgba(0,255,0,0.6);
outline-offset: 2px;
}