body {
    padding: 0;
    margin: 0;
    height: 100vw;
    background: #373737;
    overflow: hidden;
}

p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: normal;
    margin: 0;
    text-align: center;
}

a {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: normal;
    color: #8a8a8a;
    margin: 0;
    margin-top: 50px;
}

.cat {
    margin-top: 20px;
    animation-name: moveCat;
    animation-duration: .7s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    height: 150px;
    width: auto;
    transition: ease-in-out;
}

.text {
    color: #8a8a8a;
    margin-top: 0;
}

.main-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.attention-container {
    background: repeating-linear-gradient(45deg, #ffeb28, #ffeb28 10px, #281d20 10px, #281d20 20px);
    width: 100%;
    padding: 20px;
    box-shadow: 0px 0px 10px black;
    z-index: 2;
}

.attention-text {
    background: #ffeb28;
    padding: 20px;
}

@keyframes moveCat {
    0% {
        transform: translateY(5px) rotate(1deg)
    }

    25% {
        transform: translateY(6px) rotate(0)
    }

    50% {
        transform: translateY(8px) rotate(-1deg)
    }

    100% {
        transform: translateY(10px) rotate(0deg)
    }
}