@import url('https://fonts.googleapis.com/css?family=Poppins:400,700');
html {
    font-size: 30%;
}
body {
    background-image: linear-gradient(153deg, #EB1C31 0%, #48276C 95%);
    background-attachment: fixed;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.card {
    background: #fff;
    border-radius: .8em;
    box-shadow: 0 .2em .4em 0 rgba(14,7,21,0.25);
    text-align: center;
    max-width: 60em;
    padding: 0 4.8em 4.8em;
    margin: 2.4em 2.4em 6.4em;
}
.userpic {
    background: #fff;
    width: 12.8em;
    height: 12.8em;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto -6.4em;
    border: solid .4em #fff;
    position: relative;
    top: -6.4em;
}
.userpic img {
    width: 12.8em;
}
.logo {
    display: block;
    height: 9.6em;
    margin: 4.8em auto 6.8em;
}
h1 {
    font-size: 3.2em;
    line-height: 1.4em;
    margin: 0;
}
p {
    font-size: 2em;
    margin: 0;
}
.qr {
    width: 16em;
    height: 16em;
}
@media (min-width: 400px) {
    html {
        font-size: 50%;
    }
}
@media (min-width: 1025px) {
    html {
        font-size: 62.5%;
    }
}