html {
    overflow: hidden;
    height: 100%;
}

body {
	font-family: 'Mate SC';
    color: #ffffff;
    overflow: auto;
    height: 100%;
}

transparent-cover {
    height: 100%;
}

.what {
    background-image: url('../img/bg_full.png');
    background-repeat: no-repeat;
    /*background-size: contain;*/
    background-size: 100% 100%;
    background-position: center;
    background-attachment: scroll, local;
}

@media (max-width: 768px) {
    .what {
        background-image: url('../img/bg_full.png');
        background-repeat: no-repeat;
        background-size: cover;
        /*background-size: 100% 100%;*/
        background-position: center;
        background-attachment: scroll, local;
    }

    .gallery-content {
        grid-template-columns: repeat(1, 1fr);  /* 2 columns for medium screens */
    }
}

ul li {
    list-style: none;
    list-style-type: none;
}

.cover {
	padding: 0 0 400px;
}

.banner {
    padding: 25%;
}

iframe {
    display:block;
    width:100%;
    height: 30em;
}

.home {
    width: 200px;
    height:200px;
    margin-right: 20px;
    margin-left:  20px;
}

.text-navbar {
    display: flex;
    align-items: center;
    font-size: 30px;
    margin-top: 40px;
}

.socials {
    width: 50px;
    height: 50px;
}

.pitu-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}

.container-image {
    width: 100%;
    display: block;
}

.container-content {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 60%;
    height: 50%;
    border: none;
}

.image-button {
    border: none;
    width:80%;
    height:80%;
}

.image-button img {
    width: 100%;
    height: 100%;
}

/* Gallery display - show 3 items per row */
.gallery-content {
    display: grid;  /* Use grid layout */
    grid-template-columns: repeat(3, 1fr);  /* 2 columns, equal width */
    gap: 16px;  /* Adds space between items */
    padding-left: 0px;
}