/* Reset default margins/padding */
body {
    margin: 0;
    padding: 0;
    background: #fff; /* fallback background color */
    position: relative; /* for pseudo-elements */
}

/* Left side background image that fills the left gap */
body::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc((100vw - 30vw) / 2);  /* dynamically fills left gap */
    background: url('htmlpilt.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

/* Right side background image that fills the right gap */
body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: calc((100vw - 30vw) / 2);  /* dynamically fills right gap */
    background: url('EF2000Typhoon.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

/* Center the table with a narrow width (30% of viewport width) */
table {
    margin: 20px auto;
    width: 30vw; /* Narrower table */
    background-color: black;
    border-collapse: collapse;
    position: relative;
    z-index: 1; /* Sits above the side images */
}

/* Table, cell, and text styling */
table, th, td {
    border: 2px solid white;
    padding: 10px;
    text-align: left;
    color: black;
    -webkit-text-stroke: 1px white; /* White outline on text */
}

/* Link styling */
a {
    color: black;
    text-decoration: none;
    -webkit-text-stroke: 1px white;
    transition: 0.3s;
}

a:hover {
    -webkit-text-stroke: 2px white;
}
