@import url('fonts.css');
*,
*::after,
*::before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --titleFont: "Gotham XNarrow", sans-serif;
    --textFont: "Neu", sans-serif;
    --yellow: #28a745
}

body {
    padding: 0;
    margin: 0;
    line-height: 1.618;
    font-family: var(--textFont);
}

h1,
h2 {
    margin: 0;
    font-family: var(--titleFont);
    line-height: 1;
}

h1 {
    font-size: 6em;
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5em;
    color: white;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0
}

a {
    color: inherit;
    text-decoration: none;
}

.flex-area {
    display: flex;
    flex-direction: column;
}


/* Start */

body {
    background: #171C2C;
    color: #fff
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, #171C2C 100%);
    z-index: -2;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: linear-gradient(to top, #171C2C, transparent);
    z-index: -1;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%;
}


/* Header */

header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2em 0;
}

header nav ul {
    display: flex;
    flex-direction: row;
}

header nav ul li {
    display: inline-flex;
}

header nav ul li:not(:first-child) {
    margin-left: 1em
}

header nav ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--yellow);
    padding: .75em 2em;
    transition: all 200ms ease-in-out
}

header nav ul li a:hover {
    letter-spacing: 1px;
}

header nav ul li a.active {
    background: var(--yellow);
    color: #fff
}

header nav ul li svg {
    width: 1em;
    margin-left: 1em
}

.pageskin {
    user-select: none;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -3;
    background-image: url('https://cdnobi.info/cdnobi.info/cdn//tv/tester/uploads/settings/bp-pageskin.jpg');
    background-size: 100%;
    background-position: 100% 100%;
}

.logo img {
    width: 160px;
}


/* Content */

.content {
    text-align: left;
}

.content p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.4);
    margin: 1em 0 0 0;
    max-width: 50%;
}

.login-site {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: white;
    font-weight: 700;
    padding: 1em 2em;
    font-size: 1.5em;
}

.login-site svg {
    width: 1em;
    margin-left: 1em;
}

.site-links {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-top: 1em;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: center;
    margin-right: 1em
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
}

.instagram {
    background: linear-gradient(135deg, rgba(195, 42, 163, 1), #841b6e);
}

.twitter {
    background: linear-gradient(135deg, rgba(29, 161, 242, 1), rgb(15, 90, 136));
}

.telegram {
    background: linear-gradient(135deg, rgba( 0, 136, 204, 1), rgb(16, 81, 113));
}

.tv {
    background: linear-gradient(135deg, #ccc, #999);
}

.social-links svg {
    width: 1em;
}


/* Footer */

footer {
    position: absolute;
    bottom: 0;
    left: calc((100% - 1200px) / 2);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2em 0;
}

footer span {
    font-size: .875em;
}

footer strong {
    font-weight: 400;
}

footer>div {
    margin-bottom: 1em
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1em;
    align-items: stretch;
    margin-bottom: 1em
}

.image-grid img {
    transition: all 200ms ease-in-out
}

.image-grid img:hover {
    transform: scale(1.1)
}

.image-grid.saglayici {
    grid-template-columns: repeat(11, 1fr);
}

.image-grid>div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.footer-licence {display:flex;justify-content:center;align-items:center;margin-top:1em}
