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

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1e9dea; /* Light gray background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensure the body takes the full viewport height */
    overflow: hidden; /* Prevent scrolling */
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 56px 100px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: calc(100% - 40px); /* This ensures a margin on both sides */
    max-width: 600px;
    margin: 20px;

.logo {
    max-width: 150px;
    margin-bottom: 48px;
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 24px;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    line-height: 24px;
}

.google-play-img {
    width: 150px;
    height: auto;
}

.links-container {
    margin-top: 20px;
    text-align: center;
    width: 100%; /* Ensure the container takes the full width of the page */
}

.links-container a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    display: inline-block; /* Ensure the links behave as inline-block elements */
}

.links-container a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.links-container a:visited {
    color: #ffffff;
    text-decoration: underline;
}