body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    background-color: #333;
    margin: 0;
    padding: 0;
    /* height: 100vh; */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bg-image {
    background-image: url("anthony-indraus-Bb9jWuTMPUk-unsplash.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.container {
    background-color: rgba(0, 0, 0, 0.7);
    width: 90%;
    margin: 50px auto;
    padding: 50px;
}

.table {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 10px;
    text-align: center;
}

.title {
    text-align: center;
    margin-bottom: 20px;
}