*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.header{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-container{
    width: 100%;
    height: 120vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.project{
    width: 40%;
    height: 400px;
    text-align: center;
}

.project img{
    width: 100%;
    height: 100%;
}

hr{
    width: 100%;
}

footer{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #000;
    color: #fff;
}

footer a{
    color: #fff;
}