@font-face {
  font-family: "Comic Sans MS";
  src: url(comici.ttf);
}
body {
    background-color: #000000;
}
.actual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinning-text-thing {
    font-family: "Comic Sans MS", "Comic Sans";
    font-size: 100px;
    color:#FFFFFF;
    animation-name: speen;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    transform-style: preserve-3d;
  }
.dnjgbfgs {
    margin-right: 50px;
    margin-left: 50px;
    animation: linear infinite;
    animation-name: wobble;
    animation-duration: 5s;
}
@keyframes speen {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(-360deg);
    }
}
@keyframes wobble {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}
