body {
    background: #cccccc;
    color: #666666;
    font-family: Arial, sans-serif;
    text-align: center;
    overflow: hidden;
}

a {
    color: inherit;
}

.main {
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

.maingallery {
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    text-transform: uppercase;
    font-family: Arial black;
    font-size: 2em;
}

.subtitle {
    text-transform: uppercase;
    align-self: flex-start;
    font-family: Arial black, arial, sans serif;
    font-size: 1.6em;
}

.text {
    max-width: 100%;
    text-align: justify;
    align-self: flex-start;
}

.navbar {
    width: 100%;
    justify-content: space-between;
    display: flex;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 10px;
}

.gallery-item {
    background-color: #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.scroll {
    width: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    &::-webkit-scrollbar

{
    display: none;
}

-ms-overflow-style: none;
scrollbar-width: none;
}
