/*Unsere Links*/
.row {
    text-align: center;
    position: relative;
    height: 265px;
    width: 100%;
    background-color: #000000;
    background-color: hsla( 0, 0%, 0%, 0.5);
}

.box1:hover {
    transform: scale(1.05)
}

.box2:hover {
    transform: scale(1.05)
}

.box3:hover {
    transform: scale(1.05)
}

.box1 {
    position: absolute;
    top: 12px;
    left: 5%;
    width: 200px;
    height: 200px;
    background-color: #fff;
    transition: all 0.1s linear;
}

.box2 {
    position: absolute;
    top: 12px;
    left: 50%;
    margin-left: -100px;
    width: 200px;
    height: 200px;
    background-color: #fff;
    transition: all 0.1s linear;
}

.box3 {
    position: absolute;
    top: 12px;
    right: 5%;
    width: 200px;
    height: 200px;
    background-color: #fff;
    transition: all 0.1s linear;
}

.wort1 {
    position: absolute;
    bottom: 12px;
    left: 5%;
    width: 200px;
    height: auto;
    color: #fff;
    font-size: 19px;
}

.wort2 {
    position: absolute;
    bottom: 12px;
    left: 50%;
    margin-left: -100px;
    width: 200px;
    height: auto;
    color: #fff;
    font-size: 19px;
}

.wort3 {
    position: absolute;
    bottom: 12px;
    right: 5%;
    width: 200px;
    height: auto;
    color: #fff;
    font-size: 19px;
}