.banner, .top_projects, .title{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.top_project{
    position: relative;
    width: 50%;
}

img{
    width: 100%;
    height: 100%;
}

button{
    display: flex;
    justify-content: center;
}

button:hover{
    cursor: pointer;
}

.button_top_project{
    background-color: black;
    font-size: 20px;
    color: white;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.button_top_project:hover{
    /*TODO transition*/
    background-color: #555555;
}

.other_projects{
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1200px) {
    .other_projects {
        grid-template-columns: repeat(2, 1fr);
    }

    .top_projects{
        flex-direction: column;
    }

    .top_project{
        width: 100%;
        height: 50%;
    }

    .other_project{
        width: 300px;
        height: 100px;
    }
}

.other_project{
    border: black 1px solid;
    border-radius: 8px;
    width: 400px;
    height: 150px;
    margin: 50px;
}

.other_project_content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 5px;
}

.other_project_content_text{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 40%;
}

.other_project_button{
    margin: 48px 0 0 0;
    width: 100%;
    border: none;
    height: 40px;
    border-radius: 8px;
    color: white;
}

.other_project_content > img{
    width: 200px;
    height: 100%;
}