/* General Styles */
body {
    font-family: Helvetica, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    padding: 20px;
}

.logo {
    font-weight: bold;
    font-size: 96px; /* Larger logo */
    text-transform: lowercase;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

/* Flexbox for App Page Layout */
.app-page {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items towards the top of the page */
    padding-top: 50px; /* Add some space from the top */
    height: calc(100vh - 100px); /* Full viewport height minus some space for padding */
}

.app-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    gap: 40px;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    width: 200px; /* Control image size */
    margin-bottom: 20px;
}

.app-description {
    flex: 1;
    text-align: left;
    padding-left: 20px; /* Add space between image and text */
}

.download-btn {
    background-color: grey;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.download-btn:hover {
    background-color: #777;
}
