body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    color: #4A148C;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    position: relative;
}

.logo {
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.store-button {
    margin: 10px;
    position: relative;
}

.disabled-button {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.coming-soon {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 60px;
    width: 180px;
    /* transform: translate(-50%, -50%); */
    background: rgba(74, 20, 140, 0.8);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.1em;
    text-align: center;
}

.footer {
    text-align: center;
    font-size: 0.9em;
    padding: 20px;
    border-top: 1px solid #dddddd;
}

.footer a {
    color: #4A148C;
    text-decoration: none;
    margin: 0 10px;
}