body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
    
}

@media (max-width: 600px){
    .image-container{
        flex-direction: column;
    }

    img.rounded-corners{
        max-width: 90%;
        margin-bottom: 10px;
    }

    .content{
        max-width: 100%;
    }

    button{
        padding: 5px 10px;
        font-size:12px;
    }
}

.scrapbook {
    width: 80%;
    height: 80vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.image-container{
    display: flex;
    justify-content: center;
    gap: 5px;
}

.page {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 20px;
    box-sizing: border-box;
    font-size: 25px;
}

.content {
    text-align: center;
    font-family: "Lucida Handwriting";
    max-width: 90%;
    margin: auto;
}

img.rounded-corners{
    border-radius: 30px;
    width: 100%;
    max-width: 200px;
    height: auto;
}

button {
    position: fixed;
    bottom: 20px;
    background-color: white;
    border: 2px solid black;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0; 
    font-family: "Lucida Handwriting"
}

#prev {
    left: 20px;
}

#next {
    right: 20px;
}
