
html {
  height:100%;
}

body {
  background-color:#333;
  color:#eee;
  animation: background 30s linear infinite;
  font-family: 'Mukta', sans-serif;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  display: flex;
}

nav.bar {
  position: fixed;
  width: 100%;
  background-color:rgba(51, 51, 51, 0.7);
  top:0;
  left:0;
  padding: .5em 3em;
  display: flex;
  justify-content: right;
  box-sizing: border-box;
}

nav.bar .bell {
  color: white;
  align-items: center;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  display: flex;
  height: 100%;
  padding: .5em;
  text-decoration: none;
  position: relative;
}

nav.bar #notifications:hover .bell {
  color:#c05a01;
}
#notifications menu {
  position: absolute;
  background-color: white;
  color: #666;
  right:0;
  width:12em;
  padding:1em;
  display:none;
  margin-top:0;
}
nav.bar #notifications:hover menu {
  display: block;
}

#notifications .list {
  display:none;
}
#notifications.show .list {
  display: block;
}
#notifications.show .button__badge {
  display: block;
}


#notifications .button__badge {
  background-color: #fa3e3e;
  border-radius: 50%;
  color: white;
  padding: 1px 3px;
  font-size: 11px;
  position: absolute;
  top: 4px;
  right: 3px;
  display: none;
}

nav.bar .profile {
  height:100%;
  display: block;
  border-radius:50%;
  background-image:url('img/profile.jpeg');
  background-size:100%;
  aspect-ratio: 1/1;
}

nav.bar ul {
  display: flex;
  flex-direction: row;
  margin: 0 1em;
  padding: 0 3em;
}

nav.bar ul li {
  display: flex;
  padding: 0 .5em;
  flex-direction: column;
  position: relative;
}

h1 {
  color: #fff;
}
a { 
   color: white;
}

.glow {
  font-size: 80px;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}


@keyframes background {
  0% { background-color: #412B15; }
  33% { background-color: #333; }  
  67% { background-color: #636; }
  100% { background-color: #412B15; }
}

.frame {
  padding:2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info {
  text-align: center;
}

.number {
  fill:rgba(255, 140, 0, 0.11);
  width:100px;
  height:120px;
}
.load-object {
  width:0;
  height:0;
  visibility:hidden;
}
path.on {
    fill:#ff7500;
    filter:url(#glow);
}

path.on.broken {
  animation: col 3s linear infinite;
}

@keyframes col {
  0% {fill:#ff9500}
  5% {fill:#c05a01}
  80% {fill:#7e430f}
  100% {fill:#ff7500}
}

.defs {
  width:0;
  height:0;
}

#logo {
  width:2em;
  filter: drop-shadow(0px 0px 20px rgba(256, 256, 256, 0.5));
}

@media only screen and (max-width: 700px) {
  .number {
    width: 60px;
    height: 70px;
  }
}
