h1 {
    text-align: center;
}
.container {
    margin-top: 100px;
    width: 45vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:white;
}
.container p {
    text-align: center;
    font-size: 1.5em;
}
.row {
    text-align: center;
    width: 100%;
}
.col-6 {
    height: 200px;
    background-size: cover;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.col-6 * {
    color : white;
    text-decoration: none;
}

.col-6 a {
    font-size: 2em;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.col-6 .voile, .col-6 img {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    z-index: -1;
}

.hover:hover img {
    width: 105%;
    height: 105%;
    transition: all 0.5s ease;
}
.hover:hover .voile {
    background-color: rgba(0, 0, 0, 0.2)!important;
    transition: all 0.5s ease;
}
