@import url('https://fonts.googleapis.com/css2?family=Damion&family=Lato:wght@100;300;400;700;900&family=Manrope:wght@200;300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');
:root{
    --primary: #f4f4f4;
    --secondary: #333333;
    --tertiary: #999999;
    --fourth: #BBBBBB;
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    background: var(--primary);
    font-family: "outfit", "Manrope", "Lato";
}
button, a{
    cursor: pointer;
}
#book{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-height: 100%;
    flex-wrap: wrap;
}
.brand-box{
    min-width: 390px;
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
.brand-box img{
    width: 100%;
}
.box-logo{
    margin-bottom: 2rem;
}
.box-logo > .logo {
    font-family: "Damion";
}
.box-logo > .logo > span{
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 500;
    position: relative;
    top: 3.75rem;
    left: 6rem;
}
.box-logo > .logo > h1{
    font-weight: 500;
    color: var(--secondary);
    font-size: 6rem;
}
.book-box{
    flex-grow: 1;
    min-width: 390px;
    display: flex;
    flex-direction: column;
    gap:1rem;
    background-color: white;
    width: 35%;
    min-height: auto;
    padding: 5rem 4.5rem;
}
.book-box h3 { 
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
}
.book-box p{
    padding: 0rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 1rem;
}
.book-box h6{
    margin-top: 10rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--fourth)
}
.actions{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.actions button{
    width: 85%;
    padding: 1rem;
    font-family:"Outfit";
    font-size: 1rem;
    font-weight: 600;
}
.actions button:nth-child(1){
    border:2px solid var(--secondary);
    background: white;
    color: var(--secondary);
}
.actions button:nth-child(2){
    border: 2px solid var(--secondary);
    background: var(--secondary);
    color: white;
}