/* Reset the default browser margin and padding */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;  /* Allows wrapping if height becomes constrained */
    align-items: center;
    justify-content: center;
    min-height: 100vh;  /* Takes at least the full height of the viewport */
    background: linear-gradient(#1D1B1E, #3E393D);
    padding: 2% 20px;  /* Reduced padding to 2% to better fit within the viewport */
    box-sizing: border-box;  /* Include padding and border in element's total width and height */
    text-align: center;
}

.content-top, .content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

h1, h2 {
    margin: 0;
    text-align: center;
}

h1 {
    color: #FFF;
    font-size: 2em;
    margin-bottom: 5px;
}

h2 {
    color: #DDD;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: unset;
}

.app-mockup img {
    width: 80%;
    max-width: 500px;
    margin-bottom: 20px;
}

.download-btn {
    margin-top: 0px;
    transition: 0.3s;
    display: inline-block;
    width: 250px;
}

.download-btn:hover {
    opacity: 0.8;
}

.download-btn img {
    max-width: 70%; /* This ensures the image scales responsively */
    height: auto;
}

.footer-links {
    margin-top: 40px;
}

.footer-link {
    margin: 0;  /* Remove the margin */
    text-decoration: none;
    color: #FFF;
    transition: 0.3s;
    font-size: 1em;
    padding: 5px 20px;  /* Adjust the padding */
    position: relative;
}

.footer-link::before {
    content: "|";
    position: absolute; 
    left: 0;  /* Align to the left of the link */
    transform: translateX(-50%);  /* Shift half its width to the left */
}

.footer-link:first-child::before {
    content: "";
}
