main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 50px max(calc((100% - 50rem) / 2), 25px) 50px
        max(calc((100% - 50rem) / 2), 25px);
}

h1 {
    color: var(--primary);
    font-size: clamp(3rem, 9vw, 4.5rem);
    font-weight: 700;

    margin-top: 50px;

    -webkit-text-stroke-width: clamp(2px, 0.6vw, 3px);
    -webkit-text-stroke-color: black;

    position: relative;
    display: inline;
    text-align: center;

    line-height: 0.9em;

    z-index: 1;
}
h1::before {
    content: "Discography";
    text-align: center;
    white-space: pre;

    position: absolute;
    top: clamp(4px, 1vw, 6px);
    left: 50%;
    transform: translateX(-50%);

    color: var(--secondary);

    z-index: -1;
}

.active {
    text-decoration: underline;
    color: var(--primary);
}

#bot-logo {
    margin-top: 80px;
}

#gallery {
    display: grid;
    margin-top: 50px;

    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
}
#gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;

    transition: transform 0.2s ease-in-out;
}

#gallery img:hover {
    transform: scale(1.1);
}

@media (max-width: 1000px) {
    #gallery {
        grid-template-columns: 1fr 1fr;

        grid-gap: 20px;
    }
}
