* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.2;
}

.container {
    max-width: 75%;
    margin: 0 auto;
}

header.header {
    background-color: #1f2937;
    min-width: 100%;
}

.header .logo {
    font-size: 24px;
    color: #f9faf8;
    font-weight: 900;
}

nav.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
nav .nav-links {
    list-style-type: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #E5E7EB;
    font-size: 18px;
}

/* hero part css */

.hero-text h1 {
    font-size: 48px;
    font-weight: bolder;
    color: #f9faf8;

}

.hero-text p {
    font-size: 18px;
    color: #E5E7EB;
}

section.hero {
    display: flex;
    flex-flow: row wrap;
    gap: 60px;
    padding: 60px 0;
}

.hero .hero-text,
.hero .image-lily {
    width: 500px;
    height: 250px;
}

.hero .hero-text {
    flex: 1 1 auto;
    min-width: 310px;
}

.hero .image-lily {
    flex: 1 1 auto; 
    border: 1px solid blue;
    border-radius: 30px;
}

.image-lily img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.hero-text button {
    background-color: #3882f6;
    color: #f9faf8;
    padding: 5px 25px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
}

/* random plant image section */


.random-info h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bolder;
    color: #1f2937;
    margin: 40px 0;
}

.random-info .plant-image {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 100px;
}

.plant-image .image-info {
    width: 200px;
    text-align: center; 
}

.image-info img {
    height: 200px;
    width: 200px;
    border-radius: 10px;
    border: 2px solid blue;
    
}

/* quote section*/

.quote {
    background-color: #e5e7eb;
    padding: 100px 150px;
}


.quote p {
    font-size: 36px;
    font-style: italic;
    color: #1f2937;
    font-weight: lighter;
    text-align: justify;

}

.quote .quote-author {
    text-align: right;
    font-weight: 600;
    margin-top: 10px;
}

/* signup section */


.signup .signup-box,
.signup-box button {
    background-color: #3882f6;
}

.signup button {
    color: #f9faf8;
    border: 2px solid #f9faf8;
    padding: 5px 30px;
    border-radius: 4px;
    font-weight: bold;
    font-size: large;
}

.signup-box h2 {
    color: #f9faf8;
}

.signup-box p {
    color: #E5E7EB;
}

.signup-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
    margin: 70px 0px;
    border-radius: 5px;
}

/* footer section */

.footer {
    background-color: #1f2937;
    text-align: center;
    padding: 35px 0;
}

.footer .copyright {
    color: #E5E7EB;
}

