body {
      font-family: "Helvetica Neue", Arial, sans-serif;
      background-color: #45b6fe;
        }
.image {
    max-width: 70%;
    height: auto;
}

.animate {
    animation: popInAnimation 2s ease forwards;
}

@keyframes popInAnimation {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}