@font-face {
    font-family: 'Outfit', sans-serif;
    src: url('./fonts/Outfit-Regular.ttf');
    font-weight: 400;
}
@font-face {
    font-family: 'Outfit', sans-serif;
    src: url('./fonts/Outfit-Bold.ttf');
    font-weight: 700;
}

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

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(15px, 1vw + 0.3rem, 34px);
    color: #7b879d;
    background-color: #d5e1ef;
}

.qr-code {
    padding: max(1vw, 1rem);
    width: clamp(300px, 25vw, 700px);
    background-color: #ffffff;
    border-radius: max(1vw, 1rem);
    box-shadow: 0 1rem 1.5rem rgba(110, 110, 140, 0.22);
}

.qr-code__image-box {
    aspect-ratio: 1;
    border-radius: max(1vw, 1rem);
    overflow: hidden;
}

.qr-code__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-code__info {
    padding: 2.4vh 2vh;
    text-align: center;
}

.qr-code__title {
    font-weight: 700;
    color: #1f3251;
}

.qr-code__text {
    margin-top: 2.4vh;
}
