body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    padding: 20px;

}

header h1 {
    margin: 0;
}

header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav a {
    color: black;
    display: block;
    padding: 20px;
    text-decoration: none;
}

#hero {
    background-color: white;
    padding: 10px 40px 20px 40px;
    /*height: 60vh;*/
    color: black;
    text-align: left;
    overflow-x: clip;
}

#hero iframe {
    width: 100%;
    height: 600px;
    position: absolute;
    right:-25%;
    transform: rotate(-10deg);
}


#hero .logo {
    width: 180px;
    padding-bottom: 20px;
}

#hero .ipad {
    width: 100%;
    position: absolute;
    right:-25%;
    transform: rotate(-10deg);
}

#hero h1 {
    font-size: 80px;
    margin-bottom: 20px;
}

#hero-desc {
    margin-top: 60px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta {
    background-color: #333;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    margin-top: 10%;
    margin-bottom: 20px;
    padding: 20px 40px;
    text-decoration: none;
}

#features {
    background-color: #f9f9f9;
    padding: 40px 100px 100px 100px;
}

#features h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#features ul {
    font-size: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#testimonials {
    background-color: #333;
    color: #fff;
    padding: 40px;
}

#testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#testimonials blockquote {
    font-size: 18px;
    margin-bottom: 40px;
}

#testimonials cite {
    display: block;
    font-style: normal;
    font-size: 18px;
    margin-top: 20px;
}

#contact {
    background-color: #f9f9f9;
    padding: 40px;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: center;
    margin-bottom: 40px;
}

#contact label, #contact input, #contact textarea {
    font-size: 18px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

#contact button {
    background-color: #333;
    border: none;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 18px;
    margin: 20px auto;
    padding: 20px 40px;
    text-decoration: none;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
}

#thank_you {
    display: none;
}


@media (max-width: 996px) {
    #hero h1 {
        font-size: 60px;
    }


    #hero .ipad {
        width: 100%;
        position: relative;
        right: 0px;
        transform: rotate(0deg);
    }
}

@media (max-width: 640px) {
    #hero h1 {
        font-size: 40px;
    }
}
