@keyframes colorChange {
    0%   { background-color: #42938d; }
    25%  { background-color: #ba2b94; }
    50%  { background-color: #eb5e2f; }
    75%  { background-color: #2367f5; }
    100%  { background-color: #42938d; }
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Dosis', sans-serif;
  color: #012012;
  font-size: 28px;
}

.rainbow {
    animation: colorChange 10s infinite;
    width: 100%;
    height: 100vh;
}

.row {
  margin: 50px 100px 100px 100px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.column {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.content {
  display: block;
  position: absolute;
  top: 0;
  text-align: center;
  line-height: 30px;
  padding-bottom: 100px;
}

.content-icon {
  width: 90px;
  height: 90px;
}

.content p {
  margin: 20px;
  line-height: 50px;
}

.logo {
  text-align: center;
  padding-top: 15%;
}
.logo img {
  width: 350px;
  height: 350px;
}

.bounce-image {
    display: block;
    margin: 0 auto; /* Center the image if needed */
    transition: transform 0.2s;
}

.bounce-image:hover, .bounce-image:active {
    animation: spring-bounce 0.75s ease-out;
}

@keyframes spring-bounce {
    0%, 100% {
        transform: scale(1);
    }
    10%, 40%, 70% {
        transform: scale(1.05); /* Slightly larger scale */
    }
    30%, 50% {
        transform: scale(0.95); /* Slightly smaller scale */
    }
}

/* Responsive for tablet and smaller devices */
@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
        /*grid-template-rows: 100vh 100vh 100vh 100vh;*/
        margin: 25px 25px 50px 25px;
    }
    .logo img {
      width: 250px;
      height: 250px;
    }
    .content {
      position: inherit;
    }
}
