* {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  box-sizing: border-box;
}

html {
  padding: 0;
  color: #080808;
  background-color: #eef;
  min-height: 100vh;
  max-width: 100vw;
}

body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  grid-template-columns: 1fr;
  grid-template-areas: "header" "nav" "main" "footer";
  background-color:#0F0F0F;
  
}


.logo{
max-width: 250px;
max-height: 50px;
}
body.night {
  color: #eef;
  background-color: #080808;
 
}
/*eliel novidades*/
.novidades {
  width: 40px;
  font-size: 14px;
  padding: 4px;
  position: absolute;
  margin-left: 10px;
  margin-top: -132px;

  text-align: center;
  border-radius: 25px;
  transform: rotate(0deg);
    background-color: #CC0000;
  color: #fff;
}

.night-button {
  position: fixed;
  bottom: -200;
  right: 0;
  font-weight: bold;
  background-color: #080808;
  color: #eef;
  border: none;
  padding: 0rem;
  border-top-left-radius: 0rem;
  visibility:hidden;
}

.night .night-button {
  background-color: #eef;
  color: #080808;
}

header {
  grid-area: header;
  padding: 0.5rem;
}

main {
  grid-area: main;
  padding: 0.5rem;
}

footer {
  grid-area: footer;
  padding: 0.5rem;
}

.container, .container-app {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.container-app {
  height: 110px;
  overflow: hidden;
}

.randomise-button, .item {
  border-radius: 1rem;
  border: none;
  padding: 1rem;
  background-color: orange;
  color: #080808;
  margin: 10px;
  text-align: center;
}

.night .randomise-button, .night .item {
  background-color: darkred;
}

.item {
  width: 79px;
  height: 79px;
  padding: 0;
  font-weight: 700;
  font-size: 3rem;
  color: #eef;
  /*cursor: pointer;*/
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.9);
  background-color: #0A0A0A;

}
.icone_canal {
  width: 80px;
  height: 80px;
  padding: 0;
  font-weight: 700;
  font-size: 3rem;
  color: #eef;
  /*cursor: pointer;*/
  border-radius: 5px;
}
.bg-white-eliel {
background-color: #121212; 
}

.night .item {
  color: #080808;
  background-color: #0A0A0A;
}


/*carregar pagina*/
/* Center the loader */
#loader {
  position: absolute;
  background-color:#111;
  left: 0%;
  top: 0%;
  z-index: 9999;
  width: 100%;
  height: 100%;

}
#logo_loading {
  position: absolute;
  background-color:#111;
  left: 50%;
  top: 50%;
  z-index: 99999;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
  text-align: center;
}
/*carregar pagina*/