@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
body {
    font-family: 'Oswald', sans-serif;
}
.overlay  {
    position: absolute;
    z-index: 2;
    color: white;
    font-weight: bold;
    transform: translate(-50%,-50%);
    top: 40%;
    left: 50%;
    text-align: center;
    cursor: default;
}
.screen  {
    top: 0;
    background: rgba(0,0,0,0.2);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.background {
    position: absolute;
    z-index: -1;
}
.list {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    place-content: center;
}
.list > li {
    text-align: center;
    padding: 2.2em;

}

.grid-center {
    display: grid;
    place-items: center;
}
.overflow-x-hidden {
    overflow-x: hidden;
}

.img-fix {
    position: relative;
    height: 640px;
}
.img-fix img {
    position:absolute;
    right: 0;
    bottom: 0;
    height: 640px;
}