body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('track.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    font-size: 14pt;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

button {
    padding: 20px 40px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #f4f4f4;
    padding: 20px;
    width: 300px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 14pt;
}

.close {
    cursor: pointer;
    float: right;
    font-size: 20px;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

table td {
    padding: 5px;
}

