.btns{
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
.frontBtn{
    background: linear-gradient(135deg, #f4a3d4, #f5d18b);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    padding: 12px 60px;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.backBtn{
    background: linear-gradient(135deg, #9ae3f9 0%, #a7b5f5 50%, #f3b3f4 100%);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 12px 60px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
}

.pamphlet-container{
    height: 85vh;
    width: 100vw;
    overflow-x: scroll;
}

.pamphlet-container img{
    height:100%;
    width: auto;
}

button.active{
    background:none;
    background-color: grey;
    color: #ccc;
}