@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

html,
body {
    height: 100%;
    min-height: 100%
}

body {
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    margin: 0;
    color: #fff;
    background: rgb(1, 0, 14);
    background: linear-gradient(180deg, rgba(1, 0, 14, 1) 0%, rgba(21, 2, 33, 1) 70%, rgba(0, 23, 27, 1) 100%) fixed;
}

.wrapper {
    max-width: 1024px;
    padding: 0 16px;
    margin: 0 auto;
}

header {
    background: rgba(0, 0, 0, .75);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 420;
}

header:after {
    content: '';
    display: block;
    height: 1px;
    background: rgba(55, 18, 84, 1);
    background: linear-gradient(80deg, rgba(27, 26, 33, 1) 0%, rgba(55, 18, 84, 1) 50%, rgba(27, 26, 33, 1) 100%);
}

nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.site-identity {
    font-weight: 700;
    text-transform: uppercase;
}

nav ul {
    margin: 0;
    padding: 0;
}

nav li {
    list-style: none;
    margin: 0 12px;
}

.menu-button {
    display: flex;
    flex-direction: column;
    width: 24px;
}

.menu-button span {
    display: block;
    height: 4px;
    margin-bottom: 4px;
    background: #fff;
    transition: all .25s ease-in-out;
}

.menu-button .burger-low {
    margin-bottom: 0;
}

.menu-button .burger-top,
.menu-button .burger-low {
    transform-origin: 97.5% 50%;
}

.menu-button .burger-mid {
    transform-origin: 100%;
}

.menu-open .burger-top {
    transform: rotate(-45deg);
}

.menu-open .burger-mid {
    transform: scaleX(0);
}

.menu-open .burger-low {
    transform: rotate(45deg);
}

@media only screen and (max-width: 767.95px) {
    .nav-wrapper {
        position: absolute;
        top: calc(100% + 1px);
        left: -16px;
        right: -16px;
        padding: 0 16px;
        background: rgba(0, 0, 0, .35);
        height: 0;
        overflow: hidden;
        transition: all .25s ease-in-out;
    }

    nav li {
        padding: 12px 0;
        box-sizing: border-box;
    }
}

@media only screen and (min-width: 768px) {
    .nav-wrapper {
        height: auto !important;
    }

    nav ul {
        display: flex;
    }

    nav li {
        margin: 0 12px;
    }

    nav li:last-child {
        margin-right: 0;
    }

    .menu-button {
        display: none;
    }
}

section {
    padding-top: 64px;
    margin-bottom: 64px;
}

hr {
    background: linear-gradient(80deg, rgba(27, 26, 33, 1) 0%, rgba(55, 18, 84, 1) 50%, rgba(27, 26, 33, 1) 100%);
    border: 0;
    height: 2px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.column {
    padding: 0 16px;
    box-sizing: border-box;
}

@media only screen and (min-width: 480px) {
    .column-half {
        flex: 0 0 50%;
    }
}

img {
    max-width: 100%;
}

#logo-presentation {
    padding-top: 72px;
    text-align: center;
}

.logo-thing {
    position: relative;
}

.logo-thing:after {
    content:
        'idk man you should maybe make a pixel chainlink for a logo, this is the discord emoji lol';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 210px;
    max-width: 100%;
}

#chainlogo {
    max-width: 400px;
}

h1 {
    font-size: 36px;
    text-transform: uppercase;
}

h2 {
    font-size: 24px;
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }
}

#about img {
    margin-bottom: 24px;
    width: 100%;
}

@media only screen and (min-width: 768px) {
    #about {
        display: flex;
    }

    .about-text {
        flex: 0 0 67%;
        padding-right: 64px;
        box-sizing: border-box;
    }

    .about-pic {
        flex: 0 0 33%;
        order: 2;
    }
}

.games-list a {
    display: block;
    margin-bottom: 32px;
    color: #fff;
    text-decoration: none;
}

.games-list img {
    width: 100%;
    max-width: 100%;
}

.game-title {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin: 4px 0;
}

.game-details {
    font-size: 16px;
    opacity: .5;
}

footer {
    margin-top: 16px;
    padding: 16px 0;
    opacity: .5;
}

footer a {
    color: inherit;
    text-decoration: underline dotted;
}