.page-reveal {
    animation: fadeInUp 0.6s ease-out forwards;
}

.loading {
    margin-top: 100px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}

.loading-image {
    height: 50px;
    margin-bottom: 10px;
    filter: invert(1) brightness(100) opacity(.5);
    animation: spin 3s linear infinite;
}

.hidden {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}