@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

* {
    box-sizing: border-box;
    user-select: none;
}

body {
    margin: 0;
    height: 100vh;
    background-color: #FFFFFF;
    color: #252427;
    font: 14px "Outfit", sans-serif;
    display: grid;
    place-items: center;
}

main {
    width: fit-content;
    text-align: center;
}

main h1 {
    font-size: 2em;
    font-weight: 600;
}

main img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 2.25em auto;
}

main a {
    color: #bfbecc;
    font-size: 1.2em;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}