h1{
    text-shadow: 2px 4px 6px rgb(0, 0, 0, 0.25);
    text-align: center;
    margin-bottom: 2vh;
}

h2{
    text-shadow: 1px 2px 3px rgb(0, 0, 0, 0.25);
    text-align: center;
    margin-bottom: 2vh;
}

/*Table*/
table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 1.5vh;
    background-color: #f9f9f9;
}

td, th {
    padding: 12px 15px;
    border: 1px solid #d2d2d2;
    border-radius: 1.5vh;
}


tr:nth-child(odd) {
    background-color: #fefefe;
}

th {
    background-color: #f2f2f2;
    color: #333;
    text-align: left;
    font-weight: bold;
}