@font-face {
    font-family: 'themixregular';
    src: url('fonts/TheMixC5-5_Plain.woff2') format('woff2'),
    url('fonts/TheMixC5-5_Plain.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    box-sizing: border-box;
    font-size: 1.6rem;

    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;

    padding: 0 50px 0 50px
}

.wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 650px;

    border: 5px solid #008ecf;
    padding: 50px;
}

img {
    width: 250px;
    margin-bottom: 50px;
}

p:first-of-type {
    font-size: 26px;
}

p {
    font-family: themixregular;
    font-size: 20px;
    color: #533987;
}

code {
    font-family: themixregular;
    margin-top: 20px;
    font-size: 16px;
    text-transform: uppercase;
    color: #838383;
}