body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    padding-bottom: 30px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.button {
    display: block;
    width: 95%;
    padding: 10px;
    margin: 10px auto;
    font-size: 16px;
    color: white;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
}

.button:hover {
    background-color: #45a049;
}

.button.animated {
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3 {
    color: #333;
    text-align: center; /* Centering h2 */
}

.logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info-icon {
    width: 24px;
    height: auto;
    margin-right: 8px;
}

.info-text {
    flex-grow: 1;
    margin: 0;
}


@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.vibrating {
    animation: vibrate 0.5s infinite;
}
