/**************************************/
/*              GLOBALS               */
/**************************************/

html {
    height: 100%;
    scroll-behavior: smooth;
    background: #111;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background: #111111;
    width: 100%;
    position: relative;
}

#wrapper {
    position: relative;
    overflow-x: hidden;
    min-height: 100%;
    min-width: 20rem;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #f03a1e;
    text-decoration: none;
    border-bottom: 0.1em solid rgba(240, 58, 30, 0);
}

::selection {
    color: #000;
    background: #f03a1e;
}

#wrapper>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

#wrapper .logo {
    background-image: url(/static/img/CDC_LOGO.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25rem;
    height: 13.5rem;
    margin: 0 auto;
}

#wrapper h3 {
    font-size: 28px;
    font-weight: 300;
    color: #e2440a;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 10px;
}

#wrapper .buttons a,
#wrapper .buttons div {
    display: inline-block;
    text-align: center;
}

#wrapper .buttons a {
    position: relative;
    border-radius: 2rem;
    margin: 1rem;
    padding: 1rem 3rem;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    box-shadow: -0.3125rem -0.3125rem .5625rem rgba(255, 255, 255, 0.02), .3125rem .3125rem .5625rem rgba(0, 0, 0, 0.3);
    transition: all 300ms ease-out;
}

#wrapper .buttons a>div,
#wrapper .buttons a>span {
    position: relative;
    z-index: 10;
}

#wrapper .buttons a:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
    transition: all 550ms ease-out;
}

#wrapper .buttons a.youtube:hover {
    box-shadow: -0.6125rem -0.6125rem 1rem rgba(255, 0, 0, 0.01), .6125rem .6125rem 1rem rgba(0, 0, 0, 0.2);
}

#wrapper .buttons a.twitch:hover {
    box-shadow: -0.6125rem -0.6125rem 1rem rgba(145, 86, 255, 0.01), .6125rem .6125rem 1rem rgba(0, 0, 0, 0.2);
}

#wrapper .buttons a span {
    display: inline-block;
    margin-right: .5rem;
}

#wrapper .buttons a .bg {
    position: absolute;
    z-index: 0;
    left: -155%;
    top: -250%;
    width: 150%;
    height: 350%;
    transform: rotate(35deg);
    transition: all 300ms ease-out;
}

#wrapper .buttons a:hover .bg {
    left: -35%;
    top: -150%;
}

#wrapper .buttons a.youtube .bg {
    background: #ff0000;
}

#wrapper .buttons a.twitch .bg {
    background: #9156ff;
}