body {
    background-color: #0d1218;
    color: #e4d3d3;
    margin: auto;
    font-size: 18px;
}

p {
font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

h3 {
    text-align: center;
    margin-bottom: 35px;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}


.hero {
    height: 350px;
    background: linear-gradient(to top, rgba(13, 17, 24, 0.99),
    rgba(255, 255, 255, 0)), url("images/hero-image.jpg");
    background-size: cover;
    background-position: center;
}

.hero h1 {
    margin-top: 150px;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: white;
}

.logo {
    display: block;
    width: 140px;
    margin: auto;
    position: relative;
    margin-top: -25px;
}



.content {
    margin-right: 15px;
    margin-left: 15px;
}

.underline {
    background-image: url(images/underline.png);
    padding-bottom: 15px;
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: 0 33px;
    margin-bottom: 35px;
}



.stat-item {
    display: flex;
    align-items: center;
    height: 80px;
    margin-top: 15px;
}

.stat-item p {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 20px
}

.stat-item img {
    width: 50px;
    margin-right: 15px;
}



input {
    display: block;
    padding: 15px 15px;
    margin: 0 auto 15px auto;
    width: 275px;
    font-size: 18px;
    border-radius: 8px;
    border: none;
}

button {
    display: block;
    padding: 13px 15px;
    margin: 25px auto 15px auto;
    width: 305px;
    font-size: 18px;
    border-radius: 8px;
    border: solid;
    background-color: #37424f;
    border-color: #e4d3d3;
    color: #e4d3d3;
    border-width: thick;
    font-weight: bold;
}

button:hover {
    background-color: #e4d3d3;
    color: #37424f;
}

.form-group {
    background-color: #37424f;
    padding: 15px 0;
    margin-top: 45px;
}



footer {
    text-align: center;
    padding: 10px;
    color: gray;
}






@media (min-width: 900px) {
    body {
        max-width: 1000px;
    }
    .left-content {
        width: 500px;
    }
    .form-group {
        width: 375px;
        margin-left: 25px;
        margin-top: -25px;
    }
    .container {
        display: flex;
    }
    .hero h1 {
        width: 500px;
        margin-left: 25px
    }
    .stat-item {
        height: 60px;
    }
    .content {
        margin-top: -25px;
        margin-left: 25px;
    }
    .underline {
        margin-bottom: 15px;
    }
    .hero {
        height: 500px
    }
    .logo {
        width: 180px;
        bottom: 15px;
    }
}

