html {
    height: 100%;
    background-color: #1A4393;
    color: white;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main-content {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-content img {
    width: clamp(12.5rem, 9.659rem + 12.12vw, 18.75rem);
}

.button {
    border: none;
    padding: 15px 15px;
    text-align: center;
    vertical-align: baseline;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1.2em;
    margin: 10px 10px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    justify-content: center;
    position: relative;
    max-width: 300px;
    width: 70%;
}

.iosbutton {
    background-color: white;
    color: black;
}


.main-title {
    font-size: clamp(3.25rem, 1.108rem + 0.61vw, 1.563rem);
    font-weight: 600;
    margin-bottom: 20px;
}

.main-text {
    font-size: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
    font-weight: 600;
    margin-bottom: 20px;
}

.sub-text {
    font-weight: 500;
    max-width: 800px;
    font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
}

.download-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: clamp(1.25rem, 0.398rem + 3.64vw, 3.125rem);
}

.andbutton {
    background-color: #4CAF50;
    color: white;
}

.appmallbutton {
    background-color: #4CAF50;
    color: white;
}

.googlebutton {
    background-color: #01875f;
    color: white;
}

.harbutton {
    background-color: #ce0e2d;
    color: white;
}

.icon {
    width: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
    margin-right: 5px;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright a {
    color: white;
    padding-right: 20px;
}

.qrcode {
    position: absolute;
    bottom: 80px;
    display: none;
    color: black;
    background-color: white;
    width: 200px;
    height: 200px;
    padding: 5px;
}

.import-button {
    font-size: 14px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
}

@media (min-width: 1000px) {
    .iosbutton:hover .qrcode {
        display: block;
    }

    .andbutton:hover .qrcode {
        display: block;
    }

    .harbutton:hover .qrcode {
        display: block;
    }

    .googlebutton:hover .qrcode {
        display: block;
    }

    .appmallbutton:hover .qrcode {
        display: block;
    }
}