body {
    margin: 0 0;
    padding: 0 0;
    text-align: center;
    font-family: Trebuchet MS;
}
.no_scroll{
    scrollbar-width: none;
}
.no_scroll::-webkit-scrollbar {
    display: none;
}

.main_container {
    width: 100vw;
    height: 100vh;
    /*background: #0490c7;
    background: linear-gradient(90deg, rgba(4, 144, 199, 1) 0%, rgba(89, 189, 240, 1) 50%, rgba(165, 231, 250, 1) 100%);
    */
    background: #ed220c;
    background: linear-gradient(90deg, rgba(237, 34, 12, 1) 0%, rgba(232, 53, 53, 1) 50%, rgba(237, 85, 85, 1) 100%);
    overflow: hidden;
}

.quiettime_container {
    width: 100vw;
    height: 100vh;
    background: #010008;
    background: linear-gradient(90deg, rgba(1, 0, 8, 1) 0%, rgba(44, 38, 77, 1) 50%, rgba(65, 62, 89, 1) 100%);
    overflow: hidden;
    color: rgba(255,255,255,0.25);
}

.top_container {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(0,0,0,0.15);
}

.house{
    float: left;
    margin: 10px 20px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px rgba(0,0,0,0.65);
}
.clock{
    float: right;
    margin: 10px 20px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px rgba(0,0,0,0.85);
}

.logo_container{
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 20px;
  z-index: 2;
}

.logo {
    width: 250px;
}

.upnext{
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px;
    z-index: 1;
    text-align: center;
    color: white;
    font-weight: bold; 
    font-size: 1rem;
    padding: 20px;
    background-color: rgba(0,0,0,0.65);
    border-radius: 25px;
    z-index: 1000;
}
/* Welcome info ---------------------------------------------------- */
.welcome-content {
    margin: 200px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: 100%;
    z-index: 1;
    text-align: center;
    color: white;
    text-shadow: 1px 1px rgba(0,0,0,0.65);
    font-weight: bold; 
    font-size: 5rem;
    display: block;
}

#flip {
    height: 50px;
    overflow: hidden;
    font-size: 36px;
}

#flip > div > div{
    padding: 4px 12px;
    height: 45px;
    margin-bottom: 45px;
    display: inline-block;
}

#flip div:first-child {
    animation: show 9s linear infinite;
}

@keyframes show{
    0% {margin-top: -270px;}
    5% {margin-top: -180px;}
    33% {margin-top: -180px;}
    38% {margin-top: -90px;}
    66% {margin-top: -90px;}
    71% {margin-top: 0px;}
    99.99% {margin-top: 0px;}
    100% {margin-top: -270px;}
}

/* Affirmations ---------------------------------------------------- */
.affirmation-content {
    margin: 200px auto;
    width: 650px;
    z-index: 1;
    text-align: center;
    color: white;
    text-shadow: 1px 1px rgba(0,0,0,0.65);
    font-weight: bold; 
    background-color: rgba(0,0,0,0.45);
    border-radius: 45px;
    padding: 40px;
}
.affirm-quote {
    width: 100%;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}
.affirm-author {
    text-align: right;
    margin-top: 20px;
    width: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    color: #fff;
}

/* Programming ----------------------------------------------------- */
/* Style the video: 100% width and height to cover the entire window */
#video_bg {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  text-align: center;
  overflow: hidden;
  text-shadow: 2px 2px #000;
}

.hero-content {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px;
    z-index: 1;
    text-align: center;
    color: white;
    font-weight: bold; 
    font-size: 2rem;
    width: 500px;
    padding: 40px;
    background-color: rgba(0,0,0,0.65);
    border-radius: 45px;
}

/* House Info ----------------------------------------------------- */

#info-box {
    position: fixed;
    top: 0;
    left: 0;
    padding: 100px;
    display: flex;
    width: 100%;
}

.rules-box {
    float: left;
    width: 35%;
    height: 60vh;
    margin-right: 40px;
    padding: 20px;
    background-color: rgba(255,255,255,0.85);
    border-radius: 25px;
}
.sched-box {
    float: left;
    width: 42%;
    height: 60vh;
    margin-right: 40px;
    padding: 20px;
    background-color: rgba(255,255,255,0.85);
    border-radius: 25px;
}

.legend-box {
    float: left;
    width: 15%;
    height: 60vh;
    margin-right: 40px;
    padding: 20px;
    color: #fff;
    background-color: rgba(0,0,0,0.85);
    border-radius: 25px;
    text-align: left;
}
.map-box {
    float: left;
    width: 62%;
    height: 60vh;
    margin-right: 40px;
    padding: 20px;
    background-color: rgba(255,255,255,0.85);
    border-radius: 25px;
}