h1, .message, .game {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    background-color: var(--bg-color);
    transition: all ease .8s;
}

.game {
    min-height: 500px;
}

.menu {
    display:block;
    position:absolute;
    top: 0;
    right: 0;
}

.currentQuestion {
    display:block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #FFF;
    background-color: #000000ee;
    border-radius: 50%;
}

.currentQuestion > div {
    padding: 5%;
    font-size: 1.5em;
}

.currentQuestion button {
    padding: 0.5em 1em;
    font-size: 1.3em;
}

.currentQuestion h2 {
    margin: 1em;
}

.teams {
    position: absolute;
    left:0;
    bottom:0;
    width:100%;
}

.teams a, .menu a {
    position: relative;
    display: inline-block;
    height:100%;
    margin: 0 10px;
    padding: 15px;
    text-decoration: none;
    border: 2px solid transparent;
}

.teams a {
    width: 250px;
    position:relative;
    transition: all ease 1s;
}



.teams a:hover {
    color: var(--top);
    background-color: var(--bg-top);
}

.teams a:before {
    content: "";
    display:block;
    position:absolute;
    top:-122px;
    left:0;
    width: 100%;
    height: 120px;
    background-color:transparent;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    border-top-left-radius: 50%;
    opacity: 0.9;
    border-top-right-radius: 50%;
    transition: all ease 2s;
}

.teams a[data-tid="1"] {
    color: #fff;
    border-color: #0099CC;
    background-color: #0099CC66;
}
.teams a[data-tid="1"]:before {
    background-image: url('../../resources/dog-2.png');
}

.teams a[data-tid="2"] {
    color: #fff;
    border-color: #CC0000;
    background-color: #CC000066;
}
.teams a[data-tid="2"]:before {
    background-image: url('../../resources/dog-3.png');
}

.teams a[data-tid="3"] {
    color: #fff;
    border-color: #CCCC00;
    background-color: #CCCC0066;
}
.teams a[data-tid="3"]:before {
    background-image: url('../../resources/dog-4.png');
}

.teams a[data-tid="4"] {
    color: #fff;
    border-color: #9944CC;
    background-color: #9944CC66;
}
.teams a[data-tid="4"]:before {
    background-image: url('../../resources/dog-5.png');
}


.teams a.active, .teams a:active {
    background-color: #000000;
    box-shadow: 0px -10px 20px 15px #FFFFFF;
    transform: scale(1.1);
}

.teams a.active:before {
    opacity: 1;
}

.teams a span {
    position: absolute;
    top:0;
    right:0;
    height: 100%;
    padding: 1em;
    background-color: #00000033;
}



#quiz {
    position: relative;
}

#configTeams {
    width: 30%;
}

.config-team {
    text-align: left;
}

.category {
    width: 16%;
}

.category > div {
    opacity: 0;
    background-color: var(--bg-color);
    margin-bottom: 10px;
    padding: 0;
    transition: all ease 8s;
}

.category > div.active {
    opacity: 1;
    cursor: pointer;
}

.category > div:hover {
    background-color: var(--bg-active);
}

.category h3 {
    height: 85px;
}

.category h4 {
    background-color: var(--bg-color);
    padding: 10px 20px;
    margin: 0;
    font-size: 24px;
}