body{
    background-color: rgb(5, 29, 59);
}

h1{
  color: #bcc6cc;
  text-align: center;

}

.cd{
    height: 400px;
    width: 400px;
    transform: rotate(0deg);
    animation: rotate 8s infinite;
}

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

.cd-div{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;

}

.menu{
  margin-top: 20px;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;

}