@font-face {
    font-family: 'dh';
    src: url("../Fonts/dhfont.ttf");
}
*{
    background-color: black;
    color: lightgray;
    font-family: sans-serif;
}
h1{
    font-size: 1.2rem;
    font-family: dh;
    display: flex;
    justify-content: center;
}
h2{
    display: flex;
    justify-content: center;
}
.gallery-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
.gallery-page .gallery-item {
    width: calc(33.333% - 40px);
    margin: 10px;
}
.gallery-page .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.gallery-page .gallery-item p {
    padding: 10px;
    color: #555;
    font-size: 14px;
    text-align: left;
}
.logo {
    font-family: dh;
    font-size: x-large;
    font-weight: bolder;
    color: white;
    text-decoration: none;
    text-shadow: -3px 2px 3px rgb(105, 105, 105);
    text-align: center;
    position: fixed;
    right: 10px;
}
.logo:hover {
    font-size: 1.55rem;
}