body {
    font-family: "Times New Roman," Times, serif;
    text-align: center;
    transition: background-color 0.5s ease;
}

.header {
    position: relative;
    background-image: url('LASON.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: yellow;

}
    
.header-text {
    position: relative;
    z-index: 1;
}

.header::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 0;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.info-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    padding: 15px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: white;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid black;
    padding: 10px;
}

th {
    background-color: lightgrey;
}
