.blurred-background{
    background-color: #ffc107;
    background-image: url(../img/background2.jpg);
    background-size: 100% 100%;

    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;

    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.blurred-background::after { 
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.2);
}

.background{
    background-image: url(../img/background2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/background2.jpg'); */
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.container{
    background-color: rgba(0,0,0,0.3);
    border-radius:  20px;
}

.content{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.title{
    text-shadow: 2px 2px 2px rgba(150, 150, 150, 0.62);
    color: #fefefe;
    text-align: center;
    margin-top: 10px;
    padding-top: 20px;
}

.challenges-title{
    padding: 20px;
}

.challenges-title-container{
    background-color: rgba(0,0,0,0.4);
}

.logo{
    display: inline;
    height: 2.5rem;
}

.buttons{
    width:100%
}

.button{
    text-align: center;
    /* margin: 30px 0; */
    text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
    color: #fefefe;
}

.button-link{
    text-decoration: none;
    font-size: 5rem;
    color: #fefefe;    
}

.button-link:hover{
    color: #eee;
    text-decoration: none;
}

.disabled{
    cursor: pointer;
    color: #ccc;
}

.disabled:hover{
    cursor: pointer;
    color: #ccc;
}

img.krentenbollen-logo {
    z-index: 2;
    width: 10%;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

img.contigent-logo {
    z-index: 2;
    width: 10%;
    position: fixed;
    bottom: 10px;
    right: calc(10% + 10px);
}

img.jamboree-logo {
    z-index: 2;
    width: 7%;
    position: fixed;
    bottom: 10px;
    left: 10px;
}


.challenges-container{
    background-color: transparent;
}

.sponsoren{
    color: #fefefe; 
    text-align: center; 
}

.sponsoren h2{
    margin-top: 20px;
}

.link{
    text-decoration: none;
    color: #ffa500;
}

.link:hover{
    text-decoration: none;
    color: #f07d00;
}

.challenges {
    color: #fefefe;
}

.challenge {
    padding: 10px;
}

.challenge-container{
    display: table;
    border-radius: 5px;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    padding: 5px 10px;
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.65);
    border: 5px solid #f07d00;
    height: 185px;
    width: 100%;
}

.challenge-center-container{
    vertical-align: middle;
    display: table-cell;
}

.challenges-explanation-container{
    background-color: rgba(0,0,0,0.6);
    color: #fefefe;
    padding: 10px;
    text-align: center;    
}

.challenge-title{
    margin: 10px;
}

.buddy-selector{
    margin: 10px;
}

.submit-button{
    margin: 10px;
}

.submit-button-button{
    border-radius: 2px;
}

.buddy-names {
    max-width: 90%;
}

.checkin{
    height: 150px;
}

.checkin-button{
    background-color: #fcfcfc;
    color: black;
}

.checkin-button:hover{
    background-color: #eee;
    color: black;
    cursor: pointer;
}

@media only screen and (max-width: 970px) {
    .background{
        background-size: contain;
    }
}