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

body {
    background-color: #f5f5f5;
    margin-bottom: 50px;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: black;
    padding-left: 25px;
    margin-top: 25px;
    margin-bottom: 25px;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: black;
    text-align: center;
    margin: 50px;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: black;
    text-align: center;
    margin-top: 10px;
}

ul, li, p {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: black;
    padding-top: 40px;
    padding-bottom: 40px;
}

a {
    text-decoration: none;
}
/* Header */
header {
    background-color: white;
    overflow: auto;
    width: 100%;
    height: 100px;
}

.header-logo {
    padding: 10px;
    float: left;
    border-radius: 50%;
}
/* Content */
.wrap {
    min-height: 100%;
    position: relative;
    overflow: scroll;
}

.content {
    margin: 25px;
    width: 98%;
    top: 100px;
    bottom: 0px;
    position: absolute;
    align-content: center;
    overflow: hidden;
}