@keyframes rotat {
    from{
        rotate: 3.5deg;
    }
    to{
        rotate: -3.5deg;
    }
}
@keyframes squishAnim {
    from{
        transform: scale(1,1);
    }
    to{
        transform: scale(1,0.5);
    }
}

* {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: azure;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
h1 {
    font-size: 60px;
}
p {
    position:relative;
}
body {
    background-image: url('https://i.ibb.co/bdj9vyN/image.png');
    align-self: center;
    background-size: 640px 360px;
    background-repeat: repeat;
}
li {
    text-align: left;
    position: relative;
    font-size: medium;
}

.rainbowgradient {
    background: linear-gradient(to right, #e81416, #ffa500, #faeb36, #79c314, #487de7, #4b369d, #70369d);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin: auto;
    text-shadow: none;
}

.eviltext{
    background: linear-gradient(to right, #a23b3b, #ff0000, #a23b3b);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin: auto;
    text-shadow: 0px 0px 10px #cc0202;
}
.rocking {
    animation-duration: 10s;
    animation-name: rotat;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.squish {
    animation-duration: 0.5s;
    animation-name: squishAnim;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.message {
    background-color: rgba(125, 125, 125, 0.5);
    outline: 2px solid rgba(50, 50, 50, 0.5);
    width: 70%;
    left: 15%;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media screen and (max-aspect-ratio: 15/10) {
    .message {
        width: 100%;
        left: 0%;
    }
}