@font-face {
    font-family: "DotGothic16";
    src: url(font/dotgothic16/dg16.woff2);
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Popstar";
    src: url(font/popstar/pop.woff2);
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Jua";
    src: url(font/jua/jua.woff2);
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Zalando";
    src: url(font/zalando/zalando.woff2);
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Zalando";
    src: url(font/zalando/zalando_italic.woff2);
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "ZalandoExpand";
    src: url(font/zalando-expand/zalando_exp.woff2);
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ZalandoExpand";
    src: url(font/zalando-expand/zalando_exp_italic.woff2);
    font-style: italic;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Jua", Tahoma, Verdana;
    color: rgb(251, 251, 251);
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.highlighted-txt {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 196, 0) !important;
    font-weight: bold !important;
}

.main-area {
    display: flex;
    flex-direction: row;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 160px);
    grid-auto-rows: 160px;
    gap: 0;
    background: url("img/bg.png"), linear-gradient(0deg, rgb(187, 34, 151) 0%, rgb(108, 70, 179) 35%, rgb(20, 165, 163) 100%);
    background-position: center;
    background-size: 512px;
    background-repeat: repeat;
}

.topbar {
    border-radius: 10px 10px 0px 0px;
    flex-direction: row;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 460px;
    height: 32px;
    padding: 0px 5px;
    margin: 15px 5px 5px 5px;
    background-color: #dbdbdb;
    color: #1d1d1d;
}

.bottombar {
    font-family: "Jua";
    border-radius: 0px 0px 10px 10px;
    flex-direction: row;
    display: flex;
    justify-content: end;
    align-items: center;
    width: auto;
    height: 32px;
    padding: 0px 5px;
    margin: 5px 5px 15px 5px;
    background-color: #454545;
}

.box-wide {
    grid-column: span 2;
}

.box-tall {
    grid-row: span 2;
}

.box-big {
    grid-row: span 2;
    grid-column: span 2;
}

.box-massive {
    grid-row: span 4;
    grid-column: span 3;
}

.box {
    border: 5px solid rgb(0, 0, 0);
    overflow: hidden;
    outline: 2px solid transparent; /* start transparent, not default */
    outline-offset: -2px;
    transition: 0.2s ease-in-out;
}

.box-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: 0.2s ease-in-out;
    overflow: hidden;
}

.box:hover {
    transform: scale(1.04);
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.link-tile {
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: 0.2s ease-in-out;
}

.link-tile-label {
    position: absolute;
    left: 10px;
    bottom: 5px;
    color: #ffffff;
}

.tile-bg {
    width: 100%;
    height: 100%;
    z-index: -500;
    position: absolute;
}

.header-logo {
    z-index: 2;
    height: 95px;
}

.icon-img {
    filter: invert(1);
    height: 75px;
}

.heading-marquee {
    color: rgb(255, 255, 255);
    mix-blend-mode: exclusion;
    font-size: 310px;
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
}

marquee {
    font-family: "popstar";
    font-weight: 900;
    font-size: larger;
}

.heading-text {
    z-index: 1;
    font-size: large;
    font-weight: 800;
    text-align: center;
    margin: 10px;
    font-family: "Popstar";
    background-color: #161616c9;
}

.info-text {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    background-color: #161616c9;
    text-align: center;
    margin: 2px;
    padding: 3px;
}

.info-text img {
    filter: invert(1);
    width: 16px;
    height: 16px;
    align-self: center;
    margin-right: 5px;
}

.align-left {
    margin: 10px;
    justify-content: left;
    align-items: start;
}

a {
    color: #f07693;
}
