* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.hero {
    height: 90vh;
    max-width: 100%;
    background-color: rgba(128, 9, 0, 0.925);
    color: #fff;
}

#header {
    width: 70%;
    height: 100%;
    margin: auto;
    position: relative
}

nav {
    display: flex;
}
nav img {
    width: 200px;
}

.hero-text {
    width: 90%;
    margin-top: 100px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text h1 {
    font-size: 45px;
    line-height: 1;
}

.cta {
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
    background-color: green;
    padding: 10px 15px;
    transition: background 0.3s;
}
.cta:hover {
    background-color: rgb(11, 170, 11);
}

.row {
 width: 70%;
 margin: 40px auto;
}

.text-white, .text-bg {
    width: 80%;
    margin: auto auto;
}

.row p {
    margin-bottom: 25px;
}

.section-2 {
    background-color: rgb(253, 234, 234);
    padding: 15px;
}

h2 {
    font-size: 170%;
    margin-bottom: 5px;
}

ul li {
    list-style: none;
    margin-bottom: 10px;
}

@media (max-width: 740px) {

#header {
    width: 90%;
}
nav img {
    width: 150px;
}
.hero-text {
    width:100%;
    margin-top: 20px;
    text-align: center;
    position: absolute;
   top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text h1 {
    font-size: 130%;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
}

.hero {
    height: 100vh;
}
.cta {
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    margin-top:10px;
}

.cta:hover {
    background-color: rgb(11, 170, 11);
}
.row {width:90%}

h2 {
    font-size: 120%;
    margin-bottom: 5px;
}

.row p {
    font-size: 16px;
}

}