* {
    box-sizing: border-box;
  }

html {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
}

body {
    margin: auto;
    background-color: #F2F2F2;
    position: relative;
    padding-bottom: 150px;
    min-height: 85vh;
    min-width: 400px;
    max-width: 100%;
}

h1{
    color: #0D0D0D;
}

img {
    display: block;
    margin: auto;
}

ul {
    list-style-position: inside;
}

a {
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    color: inherit;
}

a:hover{
    text-decoration: underline;
}

.container {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
}

.c-align {
    align-items: center;
}

.item {
    flex: 1 1 0;
}

.w-100 {
    width: 100%;
}
.w-70 {
    width: 70%;
}

.w-50 {
    width: 50%;
}

.center {
    text-align: center;
}

.left {
    display: inline-block;
    text-align: left;
    
}

.bullet-list {
    text-align: left;
}

.nopad {
    padding-left: 0;
}

.gray-div {
    background-color: #807c7c;
    height: 3px;
    margin: 0 5%;
}

.gray-div-s {
    background-color: #807c7c;
    height: 1.5px;
    margin: 5px 5%;
}

.test {
    background-color: aquamarine;
}
