#home__container {
    background-color: #000;
    height:100vh;
    width:100vw;
}

#home__buttons {
    display:flex;
    flex-flow:row nowrap;
    position:absolute;
    top:30px;
    right:30px;
}
#home__buttons button {
    height:50px;
    width:50px;
    background-color: transparent;
    border:0;
    cursor: pointer;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center;
}
#home__audioButton {
    background-image: url(/static/images/audio_off.svg);
}
#home__roomButton {
    color:white;
    font-size:30px;
}
#home__configButton {
    background-image: url(/static/images/settings_white.svg);
}

#home__starting {
    color:white;
    font-size:42px;
    text-align: center;
    margin:60px 0;
}
#home__idle {
    text-align: center;
}
#home__idle img {
    width:80vw;
    margin:100px 0 0 0;
}

#home__clockContainer {
    display:flex;
    flex-flow:row nowrap;
    color:#ffcc33;
    font-size:400px;
}

#home__upNext {
    height:90%;
}
#home__upNextFlex {
    display:flex;
    flex-flow:column;
    justify-content: space-between;
    height:90%;
}
#home__imageContainer {
    text-align: center;
}
#home__upNextInfo {
    width:70vw;
    margin:0 auto;
}
#home__upNext img {
    width: 75vw;
    margin: 100px 0 0 0;
}
#home__upNext h2 {
    font-size:50px;
    color:#ffcc33;
}
#home__upNextTime {
    color:#d5d9d9;
    font-size:30px;
    font-style: italic;
}
#home__upNextMessage {
    color:#d5d9d9;
    font-size:40px;
}

#home__timer img {
    width:35vw;
    margin:5vh;
}
#home__timerContainer {
    text-align:center;
    padding:5vh 0;
}
#home__timerClock {
    display:flex;
    flex-flow:row nowrap;
    justify-content: center;
    padding:0 5vw;
}
#home__timerClock img {
    width:22vw;
    margin:0 1vw;
}

#home__clock {
    width:500px;
    position:absolute;
    bottom:50px;
    /*left:50px;!*right:30px;*!*/
    margin:0 auto;
}
#home__clockContainer {
    display:flex;
    flex-flow: row nowrap;
}
#home__clockContainer img {
    width:150px;
    margin:0 0.5vw;
}

@media only screen and (max-width : 767px) and (orientation : portrait) {
    #home__configButton {
        background-image: url(/static/images/settings_white.svg);
        background-size: 40px 40px;
        background-repeat: no-repeat;
        background-position: center;
    }
    #home__upNext h2 {
        font-size:20px;
    }
    #home__upNextTime {
        font-size:16px;
    }
    #home__upNextMessage {
        font-size:20px;
    }
}