body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    /* background-color: #f0f2f5; */
    background-image: url("./imgs/hero-bg.png");
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* background-color: #fff; */
    padding: 20px;
    margin: 20px;
    height: 100px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.header-title {
    font-size: 3.5em;
    font-weight: bold;
    /* margin-left: 100px; */
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007bff;
}

.hero-section {
    flex:1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* background: linear-gradient(to right, #e0eafc, #cfdef3); */
}

.hero-text {
    max-width: 500px;
    padding: 50px;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.hero-text p {
    font-size: 1.2em;
    color: #717171;
    line-height: 1.6;
}

.hero-image img {
    padding: 50px;
    max-width: 435px;
    height: 435px;
    border-radius: 10px;
}

.hero-image1 img {
    padding: 50px;
    max-width: 300px;
    height: 300px;
    border-radius: 10px;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    /* position: absolute; */
    height: 100px;
    bottom: 0px;
    width: 100%;
}
