* {
    padding: 0;
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    row-gap: 60px;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

h2 {
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    font-style: normal;
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
}

p {
    color: #fff;
    line-height: 1.6;
    font-size: 18px;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(img/background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
}

tophat {
    background: rgba(0, 0, 0, 0.6);
}

tophat .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
    padding: 20px;
}

tophat marquee {
    font-size: 26px;
}

tophat .logo {
    max-width: 500px;
    width: 100%;
    display: block;
}

.divider {
    height: 4px;
    width: 100%;
    background: linear-gradient(in hsl longer hue 90deg, red 0 100%);
}

.divider.reverse {
    transform: scaleX(-1);
}

.section {
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.section img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.section .inner {
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    gap: 20px 40px;
    align-items: center;
}

.section.reverse .inner {
    flex-direction: row-reverse;
    text-align: right;
}

.more {
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.more h2 {
    text-align: center;
}

.more .inner {
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    max-width: 1000px;
}

.more .images {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, auto);
    gap: 20px;
}

.more .images img {
    aspect-ratio: 1;
    border-radius: 10px;
    width: 100%;
}

.footer {
    background: rgba(0, 0, 0, 0.6);
}

.footer .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    column-gap: 100px;
    padding: 20px;
    line-height: 1.6;
    gap: 20px 40px;
}

@media screen and (max-width: 800px) {
    h2 {
        font-size: 50px;
    }

    .section .inner {
        flex-direction: column;
        text-align: center;
    }

    .section.reverse .inner {
        flex-direction: column;
        text-align: center;
    }

    .more .images {
        grid-template-columns: repeat(2, auto);
    }

    .footer .inner {
        flex-direction: column;
        text-align: center;
    }
}