body {
    background-color: #4A6EA7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/background-soldat-dot-opt.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

body div.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    max-width: 80vw;
}

body div.content .icon {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
body div.content .icon img {
    max-width: 140px;
    width: 100%;
    max-height: 140px;
    height: 100%;

    border-radius: 22px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

a.playstore {
    width: 100%;
    aspect-ratio: 861/255;
    padding: 0;
    border: none;
    background-image: url('assets/images/play-store.svg');
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
}

a.appstore {
    width: 100%;
    aspect-ratio: 126/40;
    padding: 0;
    border: none;
    background-image: url('assets/images/app-store.svg');
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
}
