:root {
    --font: calibri, Verdana, Arial, Helvetica, sans-serif;
    --heading-font: Georgia, serif;
    --font-size: 17px;
}

body {
    font-family: var(--font);
    font-size: var(--font-size);
    background-image: url("https://sozaino.site/wp-content/uploads/2022/10/hoshizora22.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.container {
    width: 70%;
    max-width: 800px;
    margin: auto;
}


.log_entry {
    display: flex;
    align-items: center start;
    gap: 20px;
    background-color: #d3d5f0e6;
    border-radius: 0.5rem;
    margin-bottom: 20px;
    padding: 25px;
    flex-wrap: wrap;
    /* wrap on smaller screens */
    text-align: center;
}

.log_entry img {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.log_images {
    max-width: 20%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.log_images img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
}



.log_entry>*:not(img) {
    flex: 1;
    /* make text expand */
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #363b8d;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

#myBtn:hover {
    background-color: #c3c4dd;
    /* Add a dark-grey background on hover */
}