::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff86e0;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6ba3;
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #ff86e0;
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #ff6ba3;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    background-color: #212122;
    overflow-x: hidden;
}

header {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    font-family: 'Patrick Hand', cursive; 
}

h2 {
    text-align: center;
    font-family: 'Patrick Hand', cursive;
}

main {
    padding: 20px;
}

.entry {
    margin-bottom: 20px;
    padding: 30px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    border: 1px solid #ff88ed;
    border-radius: 15px;
    background-color: #2a2a2a;
    box-shadow: 0 0 20px rgba(255, 136, 237, 0.3); 
}

.entry h3 {
    margin-top: 0;
    font-size: 24px;
    color: #88bfff;
    font-family: 'Patrick Hand', cursive; 
}

.entry p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    text-indent: 20px; 
}
date {
    font-size: 21px;
    color: #fdfc8f;
    font-family: 'Gloria Hallelujah', cursive; 
}

.divider {
    border: 0;
    height: 1px;
    background: none;
    border-bottom: 3px dotted #ffffff; 
    margin: 20px 0;
    ;
}

header button {
    padding: 10px 20px;
    background-color: #ff86e0;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Patrick Hand', cursive; 

header button:hover {
    background-color: #ff6ba3;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .entry {
        padding: 20px;
    }
}
}


.image-button {
    display: inline-block;
    padding: 0;
    background-color: transparent; 
    border: none;
    cursor: pointer; 
    text-decoration: none; 
}

.button-image {
    width: 75px; 
    height: 75px;
    border-radius: 5px;
    transition: transform 0.3s ease; 
}

.image-button:hover .button-image {
    transform: scale(1.1); /* Enlarge the image on hover */
}
