@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.desktop-only{
  display: flex;
  font-family: "Lato", sans-serif;
  font-style: normal;
  flex-direction: column;
  height: 100vh;
}


header {
  background-color: #fff;
  padding: 1rem 2rem;
  color: #e60000;
  font-weight: bold;
  font-size: 1.5rem;
  border-bottom: 1px solid #ddd;
}

header img{
  height: 75px;
}

main{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  gap: 15px;
}

.adobe-logo{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.adobe-logo img{
  width: 70px;
  height: 70px;
}

.loader {
  margin: 2rem auto;
  width: 60px;
  height: 60px;
  border: 4px solid #ccc;
  border-top: 4px solid blue;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

main p a{
  text-decoration: none;
  color: blue;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

footer {
  background: linear-gradient(to top, red, transparent);
  text-align: center;
  padding: 4rem;
  font-size: 0.875rem;
  color: #333;
}

/* Hide mobile message by default, show on small screens */
.mobile-message {
  display: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #333;
}

/* Hide desktop content by default on mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-message {
    display: flex;
  }
}
