/* style.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f0f0f0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#myButton {
    position: relative;
    padding: 20px 40px;
    font-size: 24px;
    z-index: 1;
    background-color: red;
    animation: pulsate 2s infinite;
}

.arrow {
    position: absolute;
    font-size: 5em;
    animation: arrow-animation 1s infinite;
}

#arrow4 {
    top: 0;
    left: 0;
}

#arrow3 {
    top: 0;
    right: 0;
}

#arrow2 {
    bottom: 0;
    left: 0;
}

#arrow1 {
    bottom: 0;
    right: 0;
}

@keyframes pulsate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes arrow-animation {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}