body {
    background-color: black;
    opacity: .95;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
}

a,
p,
h1 {
    color: gold;
    margin: 0;
}

h1 {
    cursor: pointer;
}

#images-l,
#images-r {
    max-width: 50%;
}

.images {
    display: flex;
}

.image-arrow {
    color: gold;
    width: 5%;
    position: absolute;
    top: 50%;
    left: 90%;
}

.image-arrow:hover {
    cursor: pointer;
    opacity: 50%;
}

.left {
    left: .25%;
    transform: scaleX(-1);
    visibility: hidden;
}

.header-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: .2rem;
}

.header-container>div {
    display: flex;
    align-items: center;
    gap: 0.175rem;
}

a {
    text-decoration: none;
    padding-right: .1rem;
}

a:hover {
    opacity: 50%;
}

.contact {
    margin-right: 1rem;
    cursor: pointer;
}

.contact:hover {
    opacity: 50%;
}

.bts {
    display: none;
}

.bts-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.thumb {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;
    border-radius: 8px;
    overflow: hidden;
}

.thumb img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.2s;
    cursor: pointer;
}

.thumb img:hover {
    transform: scale(1.03);
}