* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: Arial, sans-serif;

    background: white;

    color: black;
}

.wrapper {

    width: 100%;

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;
}

.wrapper img {

    height: 46px;

    margin-bottom: 40px;
}

.wrapper h1 {

    font-size: 42px;

    font-weight: 600;
}