@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/fontawesome.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/brands.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/regular.min.css');

@font-face {
    font-family: "Century Gothic";
    src: url("font/CenturyGothicPaneuropeanRegular.ttf");
}

@font-face {
    font-family: "Century Gothic";
    src: url("font/CenturyGothicPaneuropeanLight.ttf");
    font-weight: 200;
}

@font-face {
    font-family: "Century Gothic";
    src: url("font/CenturyGothicPaneuropeanLightItalic.ttf");
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: "Century Gothic";
    src: url("font/CenturyGothicPaneuropeanBold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "Century Gothic";
    src: url("font/CenturyGothicPaneuropeanItalic.ttf");
    font-style: italic;
}

@font-face {
    font-family: "Century Gothic";
    src: url("font/CenturyGothicPaneuropeanBoldItalic.ttf");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Bank Gothic";
    src: url("font/BankGothicRegular.ttf");
}

@font-face {
    font-family: "Bank Gothic";
    src: url("font/BankGothicBold.ttf");
    font-weight: bold;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Century Gothic", sans-serif;
    font-weight: 200;
    font-style: normal;
    background: #242020;
    color: #fff;
}

nav, h1, .ff-bg {
    font-family: "Bank Gothic", sans-serif;
}

.gallery {
    display: flex;
    gap: .2em;
    width: 100%;
}

.gallery .gallery-row {
    display: flex;
    flex: 1;
    gap: 1em;
    justify-content: center;
}

.gallery .gallery-column {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: .2em;
}

.gallery .gallery-row div,
.gallery .gallery-column div {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.gallery .gallery-row div {
    border-radius: 100%;
}