@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    font-family: 'Roboto', sans-serif;
    user-select: none;
}

html {
    width: 100%;
    height: 100%;
}

body {
    display: grid;
    place-items: center;

    padding: 0;

    width: 100%;
    height: 100%;
}

.paqr-home-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0 10px;
}

@media screen and (min-width: 720px) {
    .paqr-scan-column {
        padding: 0 25%;
    }
}

/*
 * Contains the logo, the title ("Pet Airport QR") and the rounded rectangle
 * containing the message for the user.
 */
.paqr-home-center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 720px) {
    .paqr-home-center-content {
        max-width: 40%;
    }
}

.paqr-home-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.paqr-home-title {
    text-align: center;
}

.paqr-home-message-container {
    border: var(--paqr-home-message-border-color) solid 5px;
    border-radius: 40px;

    padding: 20px 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow-wrap: break-word;
}

.paqr-home-message-container.home-message {
    --paqr-home-message-border-color: #D8315B;
}

.paqr-home-button {
    font-weight: bold;
    font-size: 1.2em;
    color: white;

    background-color: #018BDE;
    padding: 10px 30px;
    margin: 10px 0 0 0;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: box-shadow ease 0.2s;

    cursor: pointer;

    text-align: center;
}

.paqr-home-button:active {
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}

.paqr-home-bottom-links {
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-self: flex-end;

    justify-content: space-around;
    align-items: center;
}

.paqr-home-bottom-link {
    color: #018BDE;
    cursor: pointer;
    text-decoration: none;
}

.paqr-home-bottom-link:visited {
    color: #018BDE;
}

.paqr-home-bottom-separator {
    width: 1px;
    height: 27px;
    background-color: #000000;

    margin: 0 10px;
}