/*
Theme Name: GetUpdate
Theme URI: https://getupdatesoftwares.com.br/
Author: Seu Nome
Author URI: https://getupdatesoftwares.com.br/
Description: Tema personalizado para o site GetUpdate.
Version: 1.0
*/

/* Spinner de três bolinhas */
.spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #007bff; /* cor do seu tema */
  border-radius: 100%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  } 40% {
    transform: scale(1);
  }
}

.post-title a {
  color: #222;
  text-decoration: none;
}

.post-title a:hover {
  color: #007bff;
}

.excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}


