body {
    font-family: 'Noto Serif', serif;
    margin: 0;
    padding: 0;
}

p {
    line-height: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

img {
    margin: 0;
    max-width: 100%;
}

strong {
    font-weight: 700;
}

a {
    color: #FFF;
    text-decoration: none;
}

a:hover {
    filter: scale(1.2) brightness(85%);
}

.home h1 {
    visibility: hidden;
    height: 0px;
}

.icon {
    width: 32px;
    height: 32px;
    align-self: center;
    display: inline-block;
    padding: 5px;
}

.logo {
    max-width: 500px;
}

.qr-display {
    width: 500px;
    height: 500px;
    display: block;
    margin: 0 auto;
}

#page {
    background: #202020;
    color: #FFF;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 50px;
}

#contacts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 20px;
    flex-wrap: nowrap;
}

#contacts>div {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media screen and (max-width: 1023px) {
    #contacts {
        flex-direction: column;
    }

    .logo {
        max-width: 100%;
        max-height: auto;
    }

    .qr-display {
        width: 300px;
        height: 300px;
        max-width: 100%;
        max-height: auto;
    }
}