* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: 'VCR';
    src: url('assets/fonts/VCR.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    background-color: black;
    background-image: url('assets/graphics/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    image-rendering: pixelated;
    color: black;
    font-family: 'VCR', sans-serif;
}

header {
    max-width: 100%;
    max-width: 100%;
    min-height: 70px;
    background: url('assets/graphics/header.jpg') center/contain repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black;
    color: white;
    font-size: 1.5rem;
    margin: 10px;
    outline: 3px ridge white;
}

h1,
h2,
h3,
h4,
h5 {
    text-align: center;
    margin: 5px 0;
}

.utility-container {
    background: linear-gradient(to bottom, white, white, lemonchiffon, rgb(255, 215, 141), white);
    border: 3px dashed orange;
    max-width: 100%;
    margin: 10px;
    position: relative;
    padding: 20px;
}

#metal-sonic-description-container {
    margin-left: 200px;
    margin-top: 60px;
}

#metal-sonic-description-container h1 {
    text-align: center;
    position: absolute;
    padding: 10px 25px 25px 15px;
    background: white;
    border-top: 3px dashed orange;
    border-left: 3px dashed orange;
    border-right: 3px dashed orange;
    top: -76.09px;
    left: -3px;
}

#metal-sonic-description-container h4 {
    text-align: center;
    position: absolute;
    padding: 10px;
    top: -30px;
    left: 35px;
}

#filters {
    display: flex;
    flex-direction: row;
    padding: 10px;
    gap: 10px;
}

#categoryFilter,
#brandFilter {
    flex: 1;
}

.futuristic-table {
    max-width: 100%;
    border-collapse: collapse;
    border: 1px solid orange;
    box-shadow: 0 0 10px white;
}

.futuristic-table th,
.futuristic-table td {
    padding: 7.5px 15px;
    border: 1px solid orangered;
    text-align: left;
}

.futuristic-table th {
    width: 20%;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.futuristic-table td {
    line-height: 1.6;
}

#metal-sonic {
    position: absolute;
    top: -15px;
    left: -150px;
    max-height: 400px;
    z-index: 1;
}

.merch-catalog {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}

.merch-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: 1px solid yellow;
    box-shadow: 0 0 5px orange;
    padding: 15px;
    width: 250px;
    text-align: center;
}

.merch-card:hover {
    box-shadow: 0 0 20px gold;
}

.merch-card img {
    max-width: 100%;
    max-height: 170px;
    image-rendering: pixelated;
}

@media (max-width:530px) {
    #metal-sonic-description-container {
        margin: 10px;
        margin-top: 50px;
    }
    #metal-sonic {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        margin: 0 auto;
        max-height: 300px;
    }
}