* {
    margin: 0;
    padding: 0;
}

body,
html {
    width: 100%;
    height: 100%;
}

div {
    display: flex;
}

.softbook {
    width: 100%;
    min-height: 100%;
    flex-direction: column;
}

.softbook-top {
    width: 100%;
    height: 8vh;
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    align-items: center;
    justify-content: center;
}

.softbook-top-center {
    width: 85%;
    height: 100%;
    flex-wrap: inherit;
    justify-content: space-between;
}

.softbook-top-center-left {
    width: 20%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.softbook-top-center-left p {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    word-wrap: break-word;
}

.softbook-top-center-right {
    flex: 1;
    height: 100%;
}

.softbook-bottom {
    width: 100%;
    height: 92vh;
}

.softbook-bottom-top {
    width: 100%;
    height: 100%;
    background-color: rgb(206, 41, 236);
    background-image: linear-gradient(135deg, rgb(206, 41, 236) 0%, rgba(105, 0, 199, 0.8) 100%);
    align-items: center;
    justify-content: center;
}

.softbook-bottom-main {
    width: 65%;
    height: 60%;
    flex-direction: row;
}
.softbook-bottom-main .softbook-bottom-main-left {
    width: 50%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.ai-book {
    width: 90%;
    height: auto;
    flex-direction: column;
}

.ai-book p:first-child {
    font-size: 2vw;
    color: #fff;
    font-weight: 600;
}

.ai-book p:nth-of-type(2) {
    font-size: 1.5vw;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

.btn {
    width: 8rem;
    height: 2.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btncolor {
    color: #fff;
    background-color: #00ba94;
    border-color: #00ba94;
    border: none;
    border-radius: 5px;
    border: 1px solid transparent;
}

.btn1 {
    margin-left: 20px;
}

.softbook-bottom-main .softbook-bottom-main-right {
    width: 80%;
    height: 100%;
}

.softbook-bottom-main .softbook-bottom-main-right img {
    width:100%;
    height: auto;
    object-fit: contain;
}