html {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: peachpuff;
}

/* --------------------------------------------GallerySection1------------------------------------------------ */

.GallerySection1{
    padding: 60px;
    margin-top: 105px
}

.GallerySection1Container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.GallerySection1Container1,.GallerySection1Container2{
    width: 100%;
}

.GS1C1H1{
    text-align: center;
}

.GS1C1H1 h1{
    font-size: 42px;
    color: peru;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.GS1C2Main{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.GS1C2MBox{
    width: 100%;
}

.GS1C2MBox{
    display: flex;
    flex-direction: row;
    justify-content: center; /* remove this line of code, if another gallery element is added*/
    gap: 30px;
}

.GS1C2MBImg{
    width: 50%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px;
}

.GS1C2MBImgEach:hover{
    transform: scale(1.2);
    transition: transform 1.5s;
}

.GS1C2MBImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.GS1C2MBView{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.GS1C2MBView span {
    color: white;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    padding: 15px 0px;
}

.GS1C2MBView a{
    text-decoration: none;
    background-color: peru;
    color: white;
    width: 60px;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    font-size: 22px;
}

.GS1C2MBView a:hover{
    cursor: pointer;
}

.GS1C2MBView{
    background: linear-gradient(45deg, black 0%, transparent);
}

@media (width<1024px) {
    .GS1C2MBox{
        flex-direction: column;
    }
    .GS1C2MBImg{
        width: 100%;
    }
    .GallerySection1{
        padding: 15px;
    }
}

@media (width<=769px) {
    .GallerySection1{
        margin-top: 55px
    }
}

/* --------------------------------------------GallerySection1------------------------------------------------ */