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

body {
    font-family: 'Arial', sans-serif;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 350px;
    max-height: 600px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

h1 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.download-link {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two buttons per line */
    gap: 10px;
    justify-items: center;
    margin-top: 20px;
}

.download-link {
    padding: 12px 20px;
    background-color: #5a9bd4;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%; /* Makes sure buttons take full available width in the grid */
}

.download-link:hover {
    background-color: #4a8db3;
}
