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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #333;
}

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.container > div {
    height: 210px;
    cursor: pointer;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.5s ease-in;
}

.container > div:hover {
    opacity: 0.7;
    transform: scale(0.95);
}

h2 {
    font-size: 45px;
    font-weight: 300;
    margin: 10px;
}

h2 span {
    font-size: 30px;
}

p {
    font-size: 20px;
}

.container > div:nth-of-type(1){
    grid-column: 1/3;
}

.container > div:nth-of-type(6){
    grid-column: 3/5;
}

.container > div:nth-of-type(9){
    grid-column: 3/5;
}

.container > div:nth-of-type(10){
    grid-column: 1/3;
}

.bg1{
    background: url('https://i.ibb.co/dBLbrRV/bg1.jpg');
}

.bg2 {
    background: url('https://i.ibb.co/Fb5jb3J/bg2.jpg');
    color: #fff;
}
