html,
body {
    margin: 0;
    height: 100%;
    width: 100%;
}


* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    background-color: rgb(255 255 255);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    gap: 2em;
}

.logo img {
    max-width: 100%;
    width: 100px;
    display: inline-block;
}

.logo h3 {
    margin: 0 0 10px;
}