* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: normal;
}
html {
    height: 100%;
}
body {
    min-height: 100%;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #303030;
    padding: 60px 20px 20px;
    min-width: 320px;
    overflow-x: auto;
    background-color: white;
}
#certificate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border: 1px solid #B2B2B4;
    position: relative;
    width: 638px;
    height: 492px;
    /* padding: 30px; */
}
#certificate:before {
    content: " ";
    position: absolute;
    z-index: -1;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 5px solid #B2B2B4;
}
footer {
    text-align: center;
    margin-top: 30px;
    height: 40px;
}
a[rel=me], #verified-account{
    padding: 0px 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
h1 {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#verified-account{
    display: flex;
    align-items: center;
}
#verified-account span {
    margin-left: 8px;
}
.textFitted{
    display: inline-flex !important;
    align-items: center !important;
}
h2, #verified-on {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
}
h3, h4 {
    font-size: 18px;
}
h3 {
    font-weight: normal;
}
h4 {
    font-weight: bold;
    margin-top: 4px;
}
#verified {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.verified-brand-color {
    color: #6364FF;
}
a {
    text-decoration: none;
    color: inherit;
}
h1 a {
    max-width: 90vW;
    white-space: nowrap;
    display: block;
}
a:hover, a:focus {
    text-decoration: underline;
}

#verified-account img {
    width: 40px;
    height: auto;
    filter: saturate(0);
}

@media(min-width: 700px) {
    h1 a {
        max-width: 600px;
    }
}

@media (max-width: 700px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 14px;
    }
    #certificate {
        width: 100%;
        height: 380px;
    }
    #verified {
        width: 80px;
        height: auto;
    }
    #verified-account img {
        width: 28px;
    }
    h3, h4 {
        font-size: 16px;
    }
}
@media (max-width: 450px) {
    #verified-account img {
        width: 20px;
    }
}
@media (max-width: 320px) {
    h1 a {
        font-size: 20px;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #151515;
        color: #d4d4d4;
    }
    #certificate {
        border: 1px solid #808080;
    }
    #certificate:before {
        border: 5px solid #808080;
    }
}