@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #010f1c;
    text-align: center;
    margin: 0;
}
p {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    text-align: center;
    margin: 0;
}

.card-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #ffffff;
}

.download-card {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.download-card-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.download-card-footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.download-card-footer img {
    cursor: pointer;
}
.heading {
    font-size: 18px;
    font-weight: 500;
    color: #141414;
    text-align: center;
    margin-top: 70px;
}
.download-card-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .download-card-footer {
        flex-direction: column; /* mobile only */
    }
}
