
/* Load Custom Fonts */
@font-face {
    font-family: 'fisher price font';
    src: url('../fonts/Fisher Price Gothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'hermes 3000 font';
    src: url('hermes 3000.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family:'Times New Roman', Times, serif;
    color: #b5d3c6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #8f8c97;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    font-family: 'fisher price font';
    text-align: center;
    color: #E72625;
    -webkit-text-stroke: 1px #640047;
    padding-bottom: 0px;
    font-size: 2.5rem;    
}

.messageboardlink {       
    font-family:'Times New Roman', Times, serif;
    text-decoration: none;
    text-align: center;
    padding: 10px;
}
.messageboardlink a {
    color: #0005ff;
    text-decoration: none;
}
.messageboardlink a:hover {
    color: #00ff5d; 
    text-decoration: underline;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;

}

.gallery-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    

}

.gallery-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: block;
    max-block-size: 500px;
    
}

.gallery-item p {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    
}

.gallery p:last-of-type {
    font-style: italic;
    font-family: Arial, sans-serif;
    color: #fff1d3
}

/* back to home link styling */
a.back-home {
    color: rgb(192, 192, 255);
    text-decoration: none;

}
a.back-home:hover {
    color: #00ff00;
    text-decoration: underline;
}

.scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    will-change: transform;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}