.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    text-align: center;
}

.image-container {
    animation: moveUpDown 2s infinite;
}

@keyframes moveUpDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

body {
	 background: rgb(0,255,68);
	 background: linear-gradient(180deg, rgba(0,255,68,1) 0%, rgba(0,255,85,1) 50%, rgba(0,255,175,1) 100%);
}