* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(245, 245, 247);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body {
    /* Disable text selection */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer */
    user-select: none;
    /* Non-prefixed version, currently supported in most browsers */
}

.orange {
    color: orange;
    padding-left: 10px;
}

.white {
    color: white;
    padding-left: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.green {
    color: green;
    padding-left: 10px;
}

.body {
    margin: auto;
    margin-top: 100px;
    text-align: center;
    background-color: aquamarine;
    border: 2px dotted rgba(61, 95, 84, 0.911);
    box-shadow: 2px 2px 2px 2px rgba(0, 128, 0, 0.445);
    padding: 15px 15px;
    width: 330px;
    border-radius: 10px;
}

.gif {
    width: 40%;
    border-radius: 10px;
}


button {
    padding: 5px 5px;
    border-radius: 5px;
    border: 1px solid gray;
    cursor: pointer;
    transition: 1s;
}

#red {
    color: red;
    margin-bottom: 5px;
    animation: moveLeftAndRight 4s ease-in-out;
    text-shadow: 2px 2px 4px rgba(124, 111, 111, 0.81);

}

@keyframes moveLeftAndRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50px);
    }

    70% {
        transform: translateY(50px);
    }

    100% {
        transform: translateX(0);
    }
}


button:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.923);
    box-shadow: 2px 2px 2px 2px rgba(128, 128, 128, 0.477);
}

input {
    text-align: center;
    border: none;
    padding: 5px 5px;
    border: 1px solid gray;
    outline: none;
    border-radius: 5px;
}

.cl {
    color: red;
    animation: 8s blink infinite;
}