@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin.woff2') format('woff2');
    font-weight: 1;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ThinItalic.woff2') format('woff2');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ThinItalic.woff2') format('woff2');
    font-weight: 1;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLightItalic.woff2') format('woff2');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBoldItalic.woff2') format('woff2');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-BlackItalic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
}

section[id="content"] {
    grid-area: content;
    display: flex;
    flex: 1;
}

.main-content {
    flex: 1;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 1rem 0;
}

.games-grid .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background-color: transparent;
    display: block;
    text-decoration: none;
    /* height: 100%; */
    height: 13.37rem !important;
    width: 14.375rem;
}

.games-grid .card .position-relative {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
}

.games-grid .card:hover img {
    transition: transform 0.1s ease-out;
    transform: scale(1.02);
}

.games-grid img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-textt {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.5rem;
    display: flex;
    width: 100%;
    align-items: center;
    color: white;
    font-weight: 700;
    overflow: hidden;
    z-index: 1;
    filter: drop-shadow(-1px 5px 2px rgba(0, 0, 0, 1));
    text-shadow: 0 0 black;
    border-radius: 10px;
    box-sizing: border-box;
}

a:hover,
button:hover {
    cursor: pointer;
}

option {
    background-color: #110A1D;
}

.register {
    background-color: #14ab32;
    border-radius: 5px;
    padding: 9px;
}

.register:hover {
    background-color: #14ab32c2;
    color: rgba(255, 255, 255, 0.919);
}

a {
    all: unset;
}

.btn-contain {
    justify-content: flex-start;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.btn-games {
    color: #fff;
    background-color: #3B4673;
    margin-right: 10px;
    border-radius: 10px;
    border: none !important;
    font-weight: 700;
}

.btn-games:hover,
.btn-games:active {
    background-color: #6288D3;
}

.btn-games.off:hover,
.btn-games.off:active {
    background-color: #3B4673;
}

.btn-games.off {
    opacity: 0.5;
}

p {
    margin: 0 0 0 !important;
}

#all-games {
    margin-top: 1.25rem;
}

#content {
    justify-content: center;
}