.sections {
    height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.sections > div {
    width: 1280px;
    display: flex;
    flex-direction: row;
}
#main {
    height: 95%;
    width: 73%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 2%;
    border: 1px solid grey;
    border-top: none;
    border-radius: 0 0 20px 20px;
}
#main .recommandTitle {
    font-size: 1.2em;
    height: 10%;
}
#main .recommandContent {
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.recommand-book-container {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80%;
}

.image-wrapper > img {
    height: 100%;
    border-radius: 15px;
}

.recommand-book-info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 20%;
    margin-left: 7.5%;
}

.recommand-book-title {
    font-size: 1.1em;
    font-weight: 500;
}

.recommand-book-publisher-author{
    font-size: 0.9em;
    color: grey;
}

#side {
    height: 95%;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#side .login {
    width: 90%;
    height: 15%;
    background-color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#side .login a {
    width: 100%;
    height: 100%;
    background-color: #2563EB;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: white;
}
#side .afterLogin {
    width: 90%;
    margin-top: 5%;
    height: 60%;
    background-color: #F0F4F8;
    display: flex;
    border-radius: 10px;
}
#side .afterLogin ul {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}
#side .afterLogin ul li {
    height: 10%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 10px;
}

.login-info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid lightgrey;
    border-radius: 10px;
}

.user-info {
    margin-top: 25px;
}

.logout-btn {
    margin-top: 10px;
    border: none;
    background-color: white;
    color: grey;
    border-radius: 10px;
    text-align: end;
}