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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fdfbf8;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 100%;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    width: auto;
    border-radius: 0.75rem;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    color: #333;
}

.text-container.tight {
    gap: 0.5rem;
}

.text-container p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.small-text {
    font-size: 0.875rem;
}

.text-container .store-button {
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.text-container .store-button:hover {
    background-color: #555;
}

.text-container .store-button:active {
    background-color: #222;
}

@media (max-width: 768px) {
    .container {
        gap: 1.5rem;
        padding: 1rem;
    }

    .logo-container img {
        max-height: 200px;
    }

    .text-container p {
        font-size: 1rem;
    }

    .text-container .store-button {
        font-size: 1rem;
        padding: 0.625rem 1.5rem;
    }
}
