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

body{
    background:#0b0b0b;
    color:#ffffff;
    font-family:'Montserrat',sans-serif;
}

.container{

    max-width:1400px;

    margin:0 auto;

    min-height:100vh;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:center;

    padding:40px;
}

/* LEFT */

.left{

    display:flex;

    justify-content:center;

}

.book-cover{

    width:100%;

    max-width:400px;

    border-radius:10px;

    display:block;

}

/* RIGHT */

.right{

    text-align:center;

}

.right h1{

    font-family:'Oswald',sans-serif;

    font-size:78px;

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:15px;

}

.divider{

    width:140px;

    height:2px;

    background:#b88a2a;

    margin:0 auto 35px auto;

}

.right p{

    max-width:760px;

    margin:0 auto;

    font-size:21px;

    line-height:1.8;

    color:#e5e5e5;

}

/* Bottom */

.bottom{

    margin-top:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

}

.author{

    width:120px;

    border-radius:8px;

}

/* Buttons */

.buttons{

    display:flex;

    gap:20px;

}

.button{

    display:flex;

    align-items:center;

    justify-content:center;

    width:230px;

    height:60px;

    background:#efefef;

    color:#111;

    text-decoration:none;

    font-weight:600;

    border-radius:8px;

    border:1px solid #b88a2a;

    font-size:20px;

}

.button:hover{

    background:#ffffff;

}

/* Mobile */

@media(max-width:1000px){

    .container{

        grid-template-columns:1fr;

        text-align:center;

        gap:30px;

        padding:30px;

    }

    .right h1{

        font-size:54px;

    }

    .bottom{

        flex-direction:column;

    }

    .buttons{

        flex-direction:column;

    }

}

.buttons{
    display:flex;
    gap:18px;
    justify-content:center;
    margin-top:20px;
}

.button-image{
    width:280px;
    height:auto;
    display:block;
}

.store-button{
    width:260px;
    height:auto;
}

/* Book cover gold frame */
.book-frame {
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #d4b56a,
        #8b6b32
    );
    box-shadow:
        0 0 18px rgba(212,181,106,0.35),
        0 15px 35px rgba(0,0,0,0.55);
}

.book-cover {
    display: block;
    width: 100%;
    border-radius: 17px;
}


/* Author photo gold frame */
.author-frame {
    padding: 3px;
    border-radius: 15px;
    background: linear-gradient(
        135deg,
        #d4b56a,
        #8b6b32
    );
    box-shadow:
        0 0 12px rgba(212,181,106,0.35),
        0 8px 20px rgba(0,0,0,0.45);
}

.author {
    display: block;
    width: 100%;
    border-radius: 12px;
}