* {
   box-sizing: border-box;
   font-family:Arial, Helvetica, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
}

header {
    background-color: #171717;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

header img {
    position: absolute;
    max-height: 5em;
    left: 0em;
    width: auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color:  #5f5f5f;
    text-align: center;
}

main {
    flex-grow: 1;
}

footer {
    background-color: #171717;
    margin-top: 0.5em;
    color: white;
}

.selectorpanel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    color: white;
}

.panel {
    border: 0.02em solid #171717;
    flex-basis: 45%;
    width: 100em;
    min-height: 25em;
    transition: transform 0.3s;
}

.selectorpanel:has(.panel:hover) .panel:not(:hover) {
    filter: brightness(0.6) blur(0.12em);
    transition: filter 0.3s;
}

.panel:hover {
    transform: scale(1.15);
    outline: 0.1em solid #292929;
    box-shadow: 0 0.6em 1.8em rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#lotl {
    background-image: url("../images/lotlpanel.jpg");
    background-position: center;
    background-size: cover;
}

#arcane-guardians {
    background-image: url("../images/arcanepanel.jpg");
    background-position: center;
}

#project-statecraft {
    background-image: url("../images/projectstatepanel.jpg");
    background-position: center;
    background-size: cover;
}

#warfront {
    background-image: url("../images/warfrontpanel.jpg");
    background-position: center;
}

