* {
    box-sizing: content-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    width: 100%;
}

div {
    margin: 0;
    padding: 0;
    border: 0;
}

h1,
p {
    display: block;
    color: black;
}

h1,
h2 {
    margin-bottom: 24px;
    line-height: 1.23;
}

h1 {
    font-size: 36px;
    font-weight: 500;
}

h2 {
    font-size: 30px;
    font-weight: 300;
}

p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.55;
}

ul {
    color: #737e86;
    list-style: disc outside;
    font-size: 20px;
}

li {
    list-style: none;
}

li::before {
    content: "\2022";
    color: red;
    font-weight: bold;
    display: inline-block;
    width: 0.7em;
    margin-left: -1em;
    font-size: 30px;
    vertical-align: middle;
}

textarea,
input {
    color: black;
    border: 1px solid #a5b9d9;
    background-color: #f4f7f9;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 20px;
    padding: 0 20px;
    line-height: 1.33;
    width: 100%;
    outline: none;
    border-radius: 0;
}

textarea {
    padding-top: 10px;
}

button[type=submit] {
    color: white;
    background-color: #c11213;
    border: 0 none;
    font-weight: 600;
    font-size: 16px;
    width: 160px;
    height: 50px;
    display: block;
    padding: 0 15px;
}