* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.4;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
    overflow: hidden;
}

a {
    text-decoration: none;
}

.mb-1 {
    margin-bottom: 1rem;
}

.heading {
    font-size: 2rem;
}

.header {
    background: #2d5c88;
    height: 7rem;
    padding: 1rem 0;
}

.header-logo {
  
}

.header-logo img {
    height: 100%;
}

#main {
    height: calc(100vh - 7rem);
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content-top {
    margin-bottom: 3rem;
}

.content-bottom {
    
}

.content-bottom img{
    display: block;
    margin: auto;
    width: 100%;
}

