* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.overallWrapper {
    width: 100%;
    height: 100vh;
    background: linear-gradient(60deg, #fff 50%, #1fa78f 50%);
    overflow: hidden;
}

.headerContainer {
    width: 100%;
    height: 80px;
    display: flex;
    /* background-color: blueviolet; */
    justify-content: space-around;
    align-items: center;
}

.logoContainer {
    width: 20%;
}

.logoContainer p {
    width: 100%;
    font-size: 30px;
}

.logoContainer p span {
    color: #1fa78f
}

.navLinksContainer {
    width: 50%;
}

.navLinksContainer ul {
    display: flex;
    justify-content: space-between;
}

.navLinksContainer ul li {
    list-style: none;
}

.navLinksContainer ul li a {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}

.textWithImageContainer {
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    
}


.textButtonBox {
    width: 50%;
}

.textButtonBox h2 {
    font-size: 25px;
    color: #1fa78f;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.textButtonBox h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.textButtonBox  p {
    line-height: 25px;
}

.textButtonBox button {
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: #1fa78f;
    border: none;
    color: #fff;
}

.imageBox {
    width: 50%;
}

.imageBox img{
    width: 100%;
}
