* {
    box-sizing: border-box; /* Ensure padding and border are included in total width/height */
}

body, html {
    height: 100%; /* Full height for body and html */
    margin: 0; /* Remove default margin */
    font-family: 'Montserrat', sans-serif;
}

.container {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    height: 100vh; /* Full viewport height */
}

.top-block {
    flex: 1; /* Take all available space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    background-color: #f4f4f4; /* Optional background color */
    font-size: 18px;
    font-weight: 700;
}

h1 {
    font-size: 24px;
    color: #333;
    margin: 20px 0; /* Add margin for spacing */
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between app icons */
}

.app-icon {
    width: 120px; /* Adjust the size as needed */
}

.bottom-block {
    padding: 10px; /* Add some padding */
    background-color: #333; /* Background color for footer */
    color: white;
    text-align: center;
}

.bottom-block a {
    color: white;
    text-decoration: none;
}

.bottom-block span {
    margin: 0 10px;
}

.logo {
    width: 100%;
    max-width: 327px;
    height: auto;
    aspect-ratio: 327 / 81;
    display: block;
}