body {
    background-color: rgb(192, 92, 255);
    color: rgb(255, 68, 0);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    width: 100%;
    height: 100%;
    font-family: ABCFavoritMonoRegular;
}

h1 {
    position: fixed;
    font-size: 8vh;
    text-align: center;
    margin: 5px;
}

@media only screen and (max-width: 1000px) {
    h1 {
        font-size: 6vh;
    }
}

@media only screen and (max-width: 980px) {
    h1 {
        font-size: 25px;
    }
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: rgb(255, 68, 0);
}

.target {
    background-color: rgb(255, 68, 0);
    border: 0px solid rgb(192, 92, 255);
    color: rgb(192, 92, 255);
    padding-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 45px;
}

.box {
    position: absolute;
    top: 55%;
    right: 0%;
    text-align: right;
    font-size: 2vh;
    width: 600px;
    padding: 20px;
    padding-right: 30px;
    color: rgb(255, 68, 0);
    background-color: rgb(192, 92, 255);

    opacity: 0;
    transition: opacity .4s ease-in-out;

}

.show {
    opacity: 1;
}

@media only screen and (max-width: 1000px) {
    .box {
        width: 100%;
        height: 380px;
        text-align: center;
        font-size: 2vh;
        top: 450px;
        padding-left: 30px;
        padding-right: 0px;
        column-count: 1;
    }
}

.rotate {
    position: absolute;
    width: 100px;
    top: 291px;
    left: 772px;
    transform-origin: 50% 50%;
    animation: rotation 15s infinite linear;
}
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(359deg);
    }
  }