#header {
    width: 100%;
    min-width: 1400px;
    margin: 0 auto;
    background-color: #fcf2f3;
}

@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

body {
    width: 100%;
    min-width: 1400px;
    margin: 0 auto;
}

.navs {
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
}

.logo img {
    align-self: center;
    height: 70px;
    align-items: center;
}

.nav a {
    letter-spacing: 10px;
    font-weight: bolder;
    font-size: 30px;
    margin-left: 30px;
    text-decoration: none;
    color: #462f31;
}

.nav a:hover {
    color: #e74c3c;
}

.nav .active {
    color: #e74c3c;
}

.content {
    width: 80%;
    margin-left: 10%;
    margin-top: 40px;
}

.banner {
    display: flex;
    background-color: #fcf2f3;
    width: 90%;
    margin: auto;
    border-radius: 20px;
    margin-top: 40px;
}

.banner-left {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 40px 0 40px 50px;
    gap: 40px;
    z-index: 1;
}

.banner-left-title {
    font-weight: 800;
    font-size: 64px;
    line-height: 64px;
    width: 480px;
}

.banner-left-content {
    display: flex;
    gap: 50px;
}
.contents{
    width: 15%;
}
.contents:nth-child(1) {
    border-right: 1px solid black;
    padding-right: 50px;
}

.contents p {
    font-size: 32px;
    font-weight: 600;
}

.contents span {
    font-size: 18px;
}

.banner-left-search {
    background-color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 500px;
    border-radius: 15px;
}

.banner-left-search input {
    border: none;
    outline: none;
    width: 80%;
    font-size: 18px;
    visibility: visible;
}

.banner-left-search input:hover::placeholder {
    visibility: hidden;
}

.banner-left-search button {
    border: none;
    cursor: pointer;
}

.banner-left-search button i {
    background-color: #fcf2f3;
    padding: 8px 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.banner-right {
    width: 100%;
    position: relative;
}

.banner-right-bg {
    position: absolute;
    background-color: #c1dcdc;
    width: 400px;
    height: 360px;
    bottom: 0;
    right: 10%;
    border-radius: 50% 20% 0px 50%;
}

.banner-right-bg img {
    position: absolute;
    top: -130px;
    transform: scaleX(-1);
    transition: all 1s ease;
}

.banner-right-bg img:hover {
    transform: scaleX(1);
    transition: all 1s ease;
    background-size: cover;
}
.classical-flowers{
    display: flex;
    justify-content: space-around;
}
.classical-flower{
    margin-top: 30px;
    width: 22.5%;
    border: #e74c3c solid 1px;
    border-radius: 10px;
    text-align: center;
    background-color: #fcf2f3;
}
.result{
    background-color: #fcf2f3;
    width: 60%;
    margin-left: 20%;
    margin-top: 50px;
    padding: 40px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: lighter;
}
.result p{
    font-size: 22px;
}

.classical-flower img{
    width: 100%;
}
