html, body{
    margin: 0;
    background-color: rgb(242, 242, 242);
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 80px;
    background-color: #003b82;
}

.brand {
    height: 70px;
}

h1 {
    text-align: center;

}

.content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    height: 650px;
}


