html {
    background-image: url("../images/cube-lights.gif");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title {
    font-weight: bold;
    font-size: 48px;
    text-align: center;
    color: #f0f0f0;
}

.project {
    position: relative;
    cursor: default;
}

.row {
    display: block!important;
    margin: 0 auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff0054;
    visibility: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.project:hover .overlay {
    visibility: visible;
    opacity: 1;
}

.project picture {
    display: block;
}

.text {
    font-family: "Raleway", sans-serif;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.image {
    display: block;
    margin: 0 auto;
    text-align: center;
    /*overflow-x: hidden;*/
}