@font-face {
    font-family: "Minecraftia-Regular";
    src:
        url("../fonts/Minecraftia-Regular.ttf") format("TrueType")
}

/* Normal styles */
@font-face {
    font-family: 'Poppins';
    font-weight: 100;
    font-style: normal;
    src: url('../fonts/Poppins/Poppins-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 200;
    font-style: normal;
    src: url('../fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 300;
    font-style: normal;
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    font-style: normal;
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 600;
    font-style: normal;
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 800;
    font-style: normal;
    src: url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 900;
    font-style: normal;
    src: url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
}

/* Italic styles */
@font-face {
    font-family: 'Poppins';
    font-weight: 100;
    font-style: italic;
    src: url('../fonts/Poppins/Poppins-ThinItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 200;
    font-style: italic;
    src: url('../fonts/Poppins/Poppins-ExtraLightItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 300;
    font-style: italic;
    src: url('../fonts/Poppins/Poppins-LightItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    font-style: italic;
    src: url('../fonts/Poppins/Poppins-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    font-style: italic;
    src: url('../fonts/Poppins/Poppins-MediumItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 600;
    font-style: italic;
    src: url('../fonts/Poppins/Poppins-SemiBoldItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/Poppins/Poppins-BoldItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 800;
    font-style: italic;
    src: url('../fonts/Poppins/Poppins-ExtraBoldItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 900;
    font-style: italic;
    src: url('../fonts/Poppins/Poppins-BlackItalic.ttf') format('truetype');
}


@media (min-width:420px) {
    .d-sm-block {
        display: block !important;
    }
}


:root {
    --color-light: #FCF9FF;
    --color-dark: #080816;
    --brand-color: #ed133f;
    --bs-link-color: var(--brand-color);
    --bs-nav-pills-link-active-color: var(--color-light);
    --bs-link-hover-color: var(--brand-color);
}

* {
    margin: 0;
    padding: 0;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand-color);
    --bs-btn-border-color: var(--brand-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b71031;
    --bs-btn-hover-border-color: var(--brand-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--brand-color);
    --bs-btn-active-border-color: #b71031;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--brand-color);
    --bs-btn-disabled-border-color: var(--brand-color);
}

.nav-pills {
    --bs-nav-pills-link-active-bg: var(--brand-color);
    --bs-nav-pills-border-radius: 50px;
}

.nav-link {
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x) calc(var(--bs-nav-link-padding-y) + 2px);
    color: var(--color-light);
    font-weight: 600;
}

.nav-link:focus-visible {
    box-shadow: 0 0 0 .25rem rgba(237, 19, 63, .25);
}

html {
    position: fixed;
    box-sizing: border-box;
    color: var(--color-dark);
    hyphens: manual;
    font-size: 100%;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow: hidden;
    text-size-adjust: none;
}

body {
    position: fixed;
    font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    background: var(--color-dark);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    justify-content: space-between;
    /* background: url(../images/banner.avif) var(--color-dark) no-repeat center center / cover;
    background-attachment: fixed; */
}

.header {
    background-color: rgb(8, 8, 22, 0.75);
    backdrop-filter: blur(15px) saturate(1.5) brightness(1.25) contrast(0.75);
    /* box-shadow: inset 0 -2px 8px #FFFFFF65, 0 2px 5px #00000015; */
    /* background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px) saturate(1.5) brightness(1.25) contrast(0.75);
    box-shadow: inset 0 -2px 8px #FFFFFF65, 0 2px 5px #00000015;
    text-shadow: 0px 0px 15px #7575754f; */
    /* border-radius: 2.5rem;
    padding-bottom: 2px; */
    /* max-width: 1320px; */
    /* transition: max-width 0.5s ease-in-out, margin-top 0.5s ease-in-out; */
    /* padding-inline: 2rem; */
}

.header .branding span {
    font-size: 2rem;
}

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 735px;
    overflow: hidden;
    color: rgb(29, 29, 31) !important;
    padding-top: 4em;
    padding-bottom: 4em;
    background-color: rgb(0, 0, 0, 0.1);
}

.hero::before {
    content: '';
    background-color: #f5f5f7;
    background-image: url("../images/hero.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
    filter: blur(5px);
    z-index: -1;
}

@media only screen and (max-width: 734px) {
    .hero {
        align-items: flex-start;
        height: 540px;
        padding-top: 2em !important;
    }
}

.section-content {
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 980px;
    position: relative;
}

@media (max-width: 1068px) {
    .section-content {
        width: 692px;
    }
}

@media (max-width: 734px) {
    .section-content {
        width: 87.5%;
    }
}

.hero h1 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: .004em;
    padding: 1em 0;
    color: var(--color-light);
    text-shadow: 0px 0px 15px #15151555;
    text-wrap: balance;
    font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

@media (max-width: 1068px) {
    .hero h1 {
        font-size: 28px;
        line-height: 1.125;
        letter-spacing: .007em;
    }
}

@media only screen and (max-width: 734px) {
    .hero h1 {
        font-size: 26px;
    }
}

/* .hero img {
    max-height: 80vh;
    height: 1200px;
    width: 100vw;
    object-fit: cover;
} */

.card {
    background-color: #161617;
    /* backdrop-filter: blur(15px) saturate(1.5) brightness(1.25) contrast(0.75); */
    /* box-shadow: inset 0 -2px 8px #FFFFFF65, 0 2px 5px #00000015; */
    /* text-shadow: 0px 0px 15px #7575754f; */
    border-radius: 0.75rem;
    border: none;
    padding-bottom: 2px;
}

.card-header {
    border-bottom: 1px solid #1f1f1f;
    padding: 1.25rem 2.5rem;
}

.card-body {
    padding: 2rem 2.5rem;
}

.server-info {
    /* display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.5rem; */
    /* height: 2000px; */
}

.server-info__icon img {
    height: 32px;
}

.server-info__description {
    font-family: 'Minecraftia-Regular';
    font-smooth: never;
    -moz-osx-font-smoothing: unset;
    -webkit-font-smoothing: none;
    margin-top: 0.5em;
}

.server-info__server {
    overflow-wrap: break-word;
    word-break: break-word;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.btn svg {
    height: 1.5em;
    fill: #FCF9FF;
    margin-left: 0.5rem;
}

.overflow-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 7.5rem;
}

.list-group-item {
    background-color: transparent;
    padding-inline: 0;
}