/* Overall page layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Landing page container */
.landing-page {
    text-align: center;
}

/* Big Red Button Style */
button#activateZaagButton {
    background-color: red;
    color: white;
    font-size: 48px; /* Text size adjusted */
    padding: 80px 120px; /* Larger padding for a bigger button */
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 600px; /* Even larger button */
    height: 250px; /* Even larger button */
    line-height: 1.2; /* Ensures the text fits properly */
    text-align: center; /* Center the text */
}

button#activateZaagButton:hover {
    background-color: darkred;
}

/* Style for Saw Container */
.saw-container {
    display: none; /* Initially hidden */
    margin-top: 30px;
}

/* Style for Saw Image */
.saw {
    width: 1200px; /* 3x the original size */
    height: auto;
    animation: sawMove 1s ease-in-out infinite alternate;
}

/* Animation for the saw image */
@keyframes sawMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(400px); /* Adjust the distance as needed */
    }
}
