:root {
    --accent: #e09ebb;
}

*, html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::selection {
    background-color: #e09eba2c;
    text-shadow: 0 0 5px #e09ebb;
}

nav, nav *, .banner, .banner * {
    transition: .2s all ease !important;
}

body {
    background-color: #171717;
    color: #c8c8cb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

nav {
    padding: 15px;
    position: sticky;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: saturate(130%) blur(10px);
    z-index: 100;
}

nav main, footer main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav main ul, footer main ul, .logo {
    list-style-type: none;
    display: flex;
    gap: 1ch;
    align-items: center;
}

a.logo {
    color: #c8c8cb !important;
    opacity: 1 !important;
}

hr {
    opacity: .1;
}

main {
    max-width: 1024px;
    margin: 0 auto;
    width: 100%;
}

a {
    color: var(--accent);
    text-decoration: none;
    opacity: .7;
    transition: .2s all ease;
}

a:hover {
    color: var(--accent);
    opacity: .8;
}

a:focus, a:active {
    color: var(--accent);
    opacity: .9;
}

figure, article main {
    display: grid;
    gap: 1ch;
}

article {
    min-height: 100vh;
    padding: 35px 0;
}

footer {
    z-index: 95;
    padding: 35px;
    background-color: #303030d7;
    backdrop-filter: saturate(130%) blur(10px);
}

.header {
    --opacity: .5;

    top: 0;
    left: 0;
    position: static;
    transform: translateY(-70px);

    height: 800px;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, var(--opacity)), rgba(0, 0, 0, var(--opacity))), url("banner.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.header main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.banner {
    --opacity: .1;

    background: linear-gradient(rgba(0, 0, 0, var(--opacity)), rgba(0, 0, 0, var(--opacity))), url("banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 15px black;
    margin: 35px 0;
    padding: 35px;
    height: 278px;
    text-align: center;
    display: grid;
    gap: 1ch;
    color: #ffffffd4;
    border-radius: 15px;
    align-content: center;
    align-items: center;
    overflow: hidden;
}

a.btn {
    padding: 15px 37px;
    background-color: rgba(255, 255, 255, 0.084);
    border-radius: 5px;
    outline: 1px solid rgba(255, 255, 255, .1);
    color: #f3f3f3f0 !important;
    opacity: .8 !important;
    transition: .2s all ease;
    width: fit-content;
}

a.btn:hover {
    opacity: .9 !important;
}

a.btn:focus, a.btn:active {
    opacity: 1 !important;
}

@media only screen and (max-width: 1044px) {
    .header main {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 630px) {
    nav main {
        justify-content: center;
    }

    #links {
        display: none;
    }

    footer main {
        flex-direction: column;
        gap: 35px;
    }

    .banner {
        border-radius: 0px;
        box-shadow: none;
    }
}

.shine {
    text-shadow: 0 0 15px #e09ebb !important;
}
