html{
    box-sizing: border-box;
}

body {
    background-color: #fff;
    font-weight: 400;
    font-size: 15px;
    font-size: 1rem;
    text-transform: none;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #424242;
    padding: 0;
    margin: 0;
}

h1 {
    color: #0170B9;
    font-size: 24px;
    margin-left: 16px;
}
@media (min-width: 1024px) {
    h1 {
        font-size: 42px;
        margin-left: 24px;
    }
}

p {
    text-align: center;
}

header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid;
    padding: 1rem;
}

.logo {
    width: 80px;
    height: auto;
}
@media (min-width: 1024px) {
    .logo {
        width: 130px;
    }
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 150px);
    padding: 1rem;
}

@media (min-width: 1024px) {
    .center {
        height: calc(100% - 163px);
    }
}