.projektContainer{
    width:100%;
    max-width: 1500px;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}

.projektContainer .projekt{
    background: rgb(247, 247, 247);
    overflow: hidden;
    display:flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width:500px;
    margin:20px;
    border: 3px solid black;
    border-radius: 20px;
}

.projektContainer .projekt h6{
    font-size: 25px;
}

.projektContainer .projekt a{
    text-decoration: none;
    color:rgb(45, 43, 180);
}

.projektContainer .projekt div{
    height:30px;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:whitesmoke;
    background:black;
    margin-top: 5px;
    border-top:3px solid black;
}

.projektContainer .projekt div:hover{
    cursor:pointer;
    background:rgb(211, 211, 211);
    color:black;
}

.mainprojcont{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}