/*Roboto Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

html {
    position: relative;
    font-size: 14px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    width: 100%;
}

.main-wrapper {
    flex: 1 0 auto;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #191919;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
}

a {
    text-decoration: none;
}

.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-label {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: antiquewhite;
    cursor: pointer;
    transition: all 0.15s;
}

    .nav-label:hover {
        transition: all 0.15s;
        color: #ff8300;
    }

.space-line {
    color: #847c71;
    font-size: 1.1rem;
    font-weight: 900;
}

.nav-button {
    color: antiquewhite;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s;
}

    .nav-button:hover {
        transition: all 0.25s;
        color: #ff8300;
    }

.main-label {
    color: #e27309;
}

.sub-label {
    color: antiquewhite;
}

.wardrone-video {
    box-shadow: rgba(226, 115, 9, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
    border-radius: 1rem;
    transition: all 0.25s;
}

    .wardrone-video:hover {
        box-shadow: rgba(226, 115, 9, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.2) 0px 8px 16px -8px;
        border-radius: 1.75rem;
    }

.retro-pong-poster {
    box-shadow: rgba(226, 115, 9, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
    border-radius: 1rem;
    background-repeat:no-repeat;
    background-size:contain;
    transition: all 0.25s;
}

    .retro-pong-poster:hover {
        box-shadow: rgba(226, 115, 9, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.2) 0px 8px 16px -8px;
        border-radius: 1.75rem;
    }

.button-redirect {
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    background-color: #e27309;
    box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
    box-sizing: border-box;
    text-align: center;
    text-transform: none;
    color: #f6f1f1;
    cursor: pointer;
    transition: all 250ms;
}

    .button-redirect:hover {
        background-color: #f5ead7;
        color: #2a1702;
        transition: all 250ms;
    }

.box {
    padding: 1rem;
    background-color: #e9e2d6;
    border-radius: 0.75rem;
    box-shadow: rgba(226, 115, 9, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
    cursor: pointer;
}

.contact-item {
    color: #8f3d13;
    font-weight: 600;
    text-decoration: none;
    transition: all 250ms;
}

    .contact-item:hover {
        color: #176e73;
    }

.line-divider {
    width: 100%;
    height: 2px;
    background-color: #452206;
}

.footer-custom {
    flex-shrink: 0;
    background-color: #121212;
    padding: 1.5rem 0;
    border-top: 1px solid #452206;
}

.footer-game-title {
    color: rgba(250, 235, 215, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.footer-links a {
    color: rgba(250, 235, 215, 0.8);
    text-decoration: none;
    font-weight: 500;
    margin: 0 0.75rem;
    transition: all 0.25s;
}

    .footer-links a:hover {
        color: #ff8300;
    }

.footer-divider {
    color: #847c71;
}

.footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(250, 235, 215, 0.6);
}