*{
    margin: 0;
    padding: 0;
    border: border-box; 
}
html{
    min-height: 100vh;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    background: url(./vertical-grey-scale-shot-black-surface.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
h1{
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
    color: white;
    font-size: 2.5rem;
}
table{
    margin: auto;
    width: 90vw;
    color: white;
}
th{
    border-bottom: 1px solid orange;
    border-top: 1px solid orange;
    padding: 10px 0px;
    color: white;
}
td{
    border-bottom: 1px solid orange;
    padding: 10px 0px 10px 20px;
    color: white;
    font-size: 1.3rem;
}
table{
    background: transparent;
    backdrop-filter: blur(5px);
    width: 70vw;
}
.btn{
    padding: 10px 20px;
    color: black;
    border-radius: 10px;
    margin: auto;
    position: absolute;
    left: 50vw;
    transform: translateX(-50%);
    margin-bottom: 10vh;
    background-color: white;
    text-decoration: none;
    text-align: center;
    font-size: 1.2rem;
}