body {
    margin: 0;
    position: relative;
    overflow: auto;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("media/immortal.jpg");
    background-size: cover;
    background-position: 50% 35%;

    filter: blur(5px);
    z-index: -1;
}


@font-face {
    font-family: "metal";
    src: url("media/SanguineFrost.ttf") format("truetype");
}

@font-face {
    font-family: "metal2";
    src: url("media/MetalGothic.ttf") format("truetype");
}

h1 {
    color: #000000;
    font-family: "metal";
    margin: 10px 15px 13px 13px;
}

h2 {
    color: #000000;
    font-family: "metal2";
    font-size: 33px;
    text-decoration: underline;
    margin: 10px 0;
}

p {
    color: #000000;
    font-family: "metal2";
    font-size: 24px;
    margin: 10px auto;
}

.top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: center;
}

.ss, .ls {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
}

.otherpages {
    font-family: "arial";
    font-size: 20px;
    margin: 20px;
}

.shlormusic {
    font-family: "metal2";
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: -10px;
}

.top-bands {
    font-family: "metal";
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    grid-template-columns: 1fr 1fr 1fr;
}

.band-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.2s;
}

.band-img:hover {
    transform: scale(1.05);
}

.band a:hover {
    text-decoration: underline;
}

.otherpages {
    padding: 10px 20px;
    margin-top: 5px;
    margin-left: 10px;
    font-size: 16px;
    border: 2px solid #ac4500;
    border-radius: 6px;
    cursor: pointer;
    background-color: #ff6600;
    color: black;
    transition: 0.2s;
}

.otherpages:hover {
    background-color: #ff7418;
    transform: scale(1.08);
}

.otherpageshyperlink {
    text-decoration: none;
    color: #000000;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 5px;
    background-color: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    text-align: center;
    gap: 0px;
}