* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Prevent scrollbars if not needed */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    /* Space between logo and button */
    padding: 0 50px;
    /* Lateral padding */
}

.logo {
    max-width: 80%;
    /* responsive constraint */
    height: auto;
}

@media (min-width: 768px) {
    .logo {
        max-width: 50%;
    }
}

.action-button {
    cursor: pointer;
    transition: transform 0.2s ease;
    border: none;
    background: none;
    padding: 0;
}

.action-button img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    /* Center the button image */
}

@media (min-width: 768px) {
    .action-button img {
        max-width: 50%;
    }
}

.action-button:hover {
    transform: scale(1.05);
}