body{
    margin: 0px;
    padding: 0px;
    background-color: #9E897A;
}

.landingSection{
    background-image: url(/images/imgGallery/5.webp);
    background-size: cover;
    background-position: center;
    height: 60vh;
}

.Nav{
    background: linear-gradient(to bottom, rgb(0,0,0) 0%, rgba(255, 255, 255, 0)100%);
    height: 320px;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.unorderedList{
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
}

.listItem{
    list-style: none;
    transition: 0.5s ease;
}

.listItem:hover{
    transform: scale(1.05);
    letter-spacing: 5px;
}

.href{
    color: white;
    text-decoration: none;
}

.listText{
    font-family: "urbanist";
    font-size: 30px;
    padding-left: 47px;
    padding-right: 47px;
}

.centerHolder{
    display: flex;
    justify-content: center;
}

.columnHolder{
    width: 90%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.column {
    display: flex;
    flex-direction: column;
    flex: 1 1 25%;
    min-width: 200px;
}

.column img{
    max-width: 100%;
    padding: 20px;
    border-radius: 30px;
    height: auto;
    display: block;
}

.header1{
    text-align: center;
    color: white;
    font-family: "urbanist";
    font-size: 5vw;
    font-weight: 300;

    margin: 0px;
    margin-top: 80px;
    margin-bottom: 25px;
    padding: 0px;
}

@media only screen and (max-width: 1500px) {
    .listText{
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 1200px) {

    .unorderedList{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        row-gap: 20px;
        padding-top: 20px;
    }
    .listText{
        padding-left: 0px;
        padding-right: 0px;
        margin: 0px;
        font-size: 30px;
    }
    .listItem{
        text-align: center;
    }

    .column img{
        padding: 15px;
    }

    .column {
        flex: 1 1 50%;
        min-width: 250px;
    }
}

@media only screen and (max-width: 800px) {
    .column img{
        padding: 10px;
    }
}

@media only screen and (max-width: 600px) {

    .columnHolder {
        flex-direction: column;
        flex-wrap: unset;
    }
    .column {
        flex: 1 1 100%;
        min-width: auto;
    }
    .column img{
        padding: 8px;
        border-radius: 20px;
    }

    .unorderedList{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .listText{
        font-size: 20px;
    }

    .header1{
        font-size: 8vw;
    }
}