@import url("https://fonts.googleapis.com/css2?family=GFS+Didot&family=Poppins:wght@400;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    transition: all 0.2s cubic-bezier(0.34, 1.12, 0.68, 1.31);
}

.gallery-heading {
    margin-top: 50px;
    padding: 0 10%;
}

.gallery-heading h1 {
    font-family: Alike;
    color: #2e3f61;
    text-align: center;
    padding-bottom: 20px;
}

.gallery-heading p {
    font-weight: 500;
    color: #666;
}
.gallery {
    min-height: 100vh;
    padding-bottom: 100px;
}

.gallery .controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    list-style: none;
}

.gallery .controls .buttons {
    height: 40px;
    width: 140px;
    background: #fff;
    color: #666;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    margin: 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.gallery .controls .buttons.active {
    background: coral;
    color: #fff;
}

.gallery .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .image-container .image {
    height: 250px;
    width: 350px;
    overflow: hidden;
    border: 10px solid #fff;
    border-radius: 13px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    margin: 20px;
}

.gallery .image-container .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery .image-container .image:hover img {
    transform: scale(1.4);
}

.statement {
    margin: 0 10%;
}
.statement h1 {
    color: #2e3f61;
    font-family: Alike;
    font-size: 35px;
    padding-bottom: 10px;
}
.statement p {
    color: #333;
    line-height: 1.59;
}

.media-handling {
    display: flex;
    justify-content: space-between;
    padding: 0 20%;
    margin-top: 50px;
}
h1.fa {
    font-size: 150px;
    color: #000;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
