::selection {
    background-color: var(--accent);
    color: var(--text);
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--text);
}

nav {
    flex: 0 0 auto;
    background-color: var(--bg);
    text-align: center;
    padding: 5px;
    border-bottom: 1px solid var(--accent);
}

.container {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
}

.content {
    height: 500px;
    width: 50vw;
    background-color: var(--bg-opague);
    border: 1px solid var(--accent);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    padding: 20px;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.left {
    padding-left: 20px;
}

.right {
    padding-right: 20px;
}

.horizontal-divider {
    height: 100%;
    padding-right: 1px;
    background: var(--accent);
    margin-left: 5px;
    margin-right: 6px;
}

.divider {
    height: 10px;
    width: 90%;
    border-top: 1px solid var(--accent);
    border-left: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
}

.body {
    width: 85%;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 40px 0;
}

.tint {
    position: relative;
    display: inline-block;
}

.tint::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.08) 0px,
        rgba(255, 255, 255, 0.08) 1px,
        rgba(0, 0, 0, 0.00) 2px,
        rgba(0, 0, 0, 0.00) 4px
    );
    opacity: 1;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.tint img {
    display: block;
}

.tint::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ff4fb8;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.tint-half::after {
    opacity: 0.5;
}

.showcase {
    height: 100%;
    width: 256px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.information {
    height: 100%;
    flex: 1 1 auto;
    padding-left: 40px;
}

h1 {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

p {
    color: var(--subtext);
}

.text-center {
    text-align: center;
}

.fa-brands {
    font-size: 28px;
    color: var(--text);
    padding-right: 10px;
}

.information svg {
    height: 22px;
    width: auto;
    color: var(--text);
    padding-right: 10px;
}

.fa-brands:hover, .information svg:hover {
    color: var(--accent);
}

.close {
    padding: 4px 8px 3px 9px;
    border: 1px solid var(--text);
    border-radius: 3px;
}
.close:hover {
    border-color: var(--accent);
}

footer {
    color: var(--subtext);
    text-align: right;
}

@media screen and (max-width: 1100px) {
    .content {
        height: 65vh;
        width: 65vw;
    }
}

@media screen and (max-width: 800px) {
    .showcase {
        width: 128px;
        justify-content: center;
    }
    .icon {
        height: 128px;
    }
    .left {
        width: 10px;
        opacity: 0;
    }
    .title {
        height: 20px;
    }
}

@media screen and (max-width: 550px) {
    .body {
        flex-direction: column;
        gap: 16px;
    }
    .showcase {
        flex-direction: row;
        height: 128px;
        width: 100%;
    }
    .right {
        font-size: 16px;
    }
    .text-center {
        display: none;
    }
    .information {
        padding-left: 0;
    }
}