body {
  font-family: "Orbitron", system-ui;
  background: linear-gradient(black, #0d3b81);
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  filter: blur(0px);
  box-sizing: border-box;

  &::-webkit-scrollbar{
    width: 0px;
    height: 0px;
  }
}


#cubo {
  position: absolute;
  justify-content: center;
  display: flex;
  opacity: 0.5;
  width: 100vw;
  height: 100vh;
  align-items: center;
  flex-direction: column;

  & img {
    width: 40vw;
    max-width: 300px;
    height: 40vw;
    max-height: 300px;
    z-index: -20;
  }
}

#cubo::after {
  content: "";
  width: 46vw;
  max-width: 320px;
  max-height: 320px;
  height: 46vw;
  z-index: -21;
  position: absolute;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  border-bottom: 2px solid white;
  border-top: 2px solid white;
  border-left: 2px solid rgba(5, 205, 255, 0);
  border-right: 2px solid rgba(5, 205, 255, 0);
  animation: rodarcontra 15s infinite;
}

#cubo::before {
  content: "";
  max-width: 340px;
  max-height: 340px;
  width: 42vw;
  height: 42vw;
  z-index: -30;
  position: absolute;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  border-bottom: 5px solid white;
  border-top: 5px solid white;
  border-left: 5px solid rgba(5, 205, 255, 0);
  border-right: 5px solid rgba(5, 205, 255, 0);
  animation: rodar 10s infinite;
}

@keyframes rodar {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rodarcontra {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

nav {
  display: flex;
  justify-content: space-between;
  height: 7%;
  width: 100%;
  margin: 0px;
  padding: 0;
  color: rgb(255, 255, 255);
  z-index: 1;

  & span {
    align-content: center;
  }

  & #menu {
    padding: 20px;
  }

  #menu:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

#menuItens {
  color: white;
  display: flex;
  position: absolute;
  top: 50px;
  padding: 5px;
  background-color: rgb(0, 12, 36);
  border: 1px solid white;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  left: 3px;
  transition: all 1s;
  filter: blur();
}

#menuItens>div:hover {
  opacity: 0.7;
}

#menuItens>div {
  background-color: transparent;
  width: 100px;
  height: 25px;
  padding: 3px;
  color: white;
  font-style: normal;
  cursor: pointer;
  text-align: center;
}

.menuparece {
  opacity: 1;
  transition: all 1.4s;
  filter: blur();
}

.menusome {
  opacity: 0;
  transition: all 1.4s;
  filter: blur();
  transform: translateX(-100px);
}

#logo {
  text-align: center;
  font-size: 15pt;
  padding: 4px;
  min-width: 50px;
  max-width: 300px;
}
#logo>a{
  color: white;
}

#logo>a>img {
  width: 30px;
  padding: 0;
  margin: 0;
  transform: translateY(5px);
}

#icone>a>img {
  width: 20px;
  margin: 15px;

  &:hover{
    opacity: 0.5;
  }
}

main {
  display: flex;
  flex-direction: column;
}

#principalmain {
  filter: blur();
}

#random {
  display: block;
  font-size: 3vw;
  max-height: fit-content;
}

aside#cronometro {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  align-self: center;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 9vw;
  width: max-content;
  height: 80vh;
  z-index: 0;
  position: absolute;
}

aside#cronometro>div {
  padding-top: 10vh;
}

#tempoformatado {
  font-family: "Orbitron", system-ui;
  font-weight: 600;
  display: flex;
  transform: translateX(-3vw);
}
#milisec {
  font-size: 60%;
  transform: translateY(3vw);
  width: 20px;
}

aside#anotaçao {
  border: 3px solid white;
  font: 20px;
  width: 100px;
  height: 40%;
  display: block;
}

.artigo {
  position: absolute;
  display: flex;
  width: 100vw;
  height: 92vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 1s;
  z-index: 1;
  
}
.imgmain{
height: 460px ;
display: flex;
flex-direction: column;
justify-items: center;
justify-content: space-between;
align-items: center;
z-index: 1;
}

.artigoaparece {
  opacity: 1;
  transition: all 1s;
  filter: blur();
  transform: translateX(0px);
}

.artigosome {
  opacity: 0;
  transition: all 1s;
  filter: blur();
  transform: translateX(-2000px);
}



.artigo>span>div {
  background: linear-gradient(#181bccc4, #00fff2);
  width: 25vw;
  height: 200px;
  min-width: 260px;
  min-height: 300px;
  display: flex;
  position: absolute;
  box-shadow: 0px 0px 20px rgb(241, 239, 239);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transform: translateY(40px);
}

.artigo>span>div>main {
  background-color: rgba(19, 11, 48, 0.637);
  width: 100%;
  height: 97%;
  margin: 5px;
  color: rgb(255, 255, 255);
  border-radius: 10px;
  text-align: center;
}

.artigo>span>img {
  width: 20vw;
  min-width: 80px;
  max-width: 100px;
  transform: translateY(-2vw);
  z-index: 1;
}

#anotacaomedia>span>img {

}

#tempos{
  padding: 10px;
  display: flex;
  justify-content: space-around;
  align-content: space-around;  
  flex-wrap: wrap;
  overflow: scroll  ;
}
#tempos::-webkit-scrollbar{
  color: transparent;
}
#tempos::-webkit-scrollbar-corner{
  color: transparent;
}
.dados{
  align-self: center;
  display: block;
  border: 1px solid white;
  padding: 10px;
  border-radius: 5px;
  margin: 1px; 
}

.metas {
  display: flex;
  align-self: center;
  justify-content: space space-between;
  padding: 10px;
  
}
.fecha {
  width: 15px;
  height: 15px;
  display: block;
  align-items: center;
  text-align: center;
  z-index: 20;
  margin: 10px;
}

.fecha:hover {
  cursor: pointer;
  transform: scale(1.1);
  rotate: 180deg;
  transition: all 1s;
}


footer {
  background-color: rgba(0, 0, 0, 0.301);
  color: white;
  width: 100%;
  height: 60px;
  display: flex;
  position: fixed;
  bottom: 0;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 10pt;
  box-sizing: border-box;
  overflow: hidden;

  & img {
    width: 20px;
    display: block;
    background-color: rgb(255, 255, 255);
    border-radius: 15%;
    margin-left: 10px;
  }
}

.footerimg:hover {
  transform: scale(1.1);
}