@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Bodoni Moda", serif;
    font-size: 1.2rem;   
}

.container{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    background: linear-gradient(to right, #041308,#0b3317);
}

.left-text{
    flex-basis: 30%;
}

.heading{
    text-align: center;
    color: white;
    font-size: 3rem;
}

.subheading{
    color: #ddd;
    text-align: center;
    margin-top: 10px;
}

.gallery{
    flex-basis: 50%;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 120px;
}

.box{
    background-color: #222;
    background-size: cover;
    background-position: bottom;
    background-blend-mode: hard-light;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease-in-out;
}

.box:hover{
    background-color: #999;
    background-position: center;
    box-shadow: 0 0 10px #fff;
    cursor: pointer;
    color: transparent;
}

/* Utility Classes */

.col-2{
    grid-column: span 2;
}

.row-2{
    grid-row: span 2;
}

/* The End */