body {
    margin: 0;
    background-color: white;
    font-family: helvetica;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

* {
    box-sizing: border-box;
}

.header {
    width: 100%;
    background-color: bisque;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
}

.header__image {
    border-radius: 50%;
}

.header__navbar {
   
}

.header__navbar__item {
    padding: 10px 20px;

}

.projects {
    width: 80%;
    margin: 100px auto;

}

.projects__container {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.projects__container__item {
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0px 20px;
}

.projects__container__item__image {
    width: 100%;
    aspect-ratio: 1/1;
    
}

.projects__container__item__title {
    margin-top: 40px;
}