* {
    box-sizing: border-box;
}

html{
    margin: 10% 20% 0 20%;
}

body {
    font-family: freight-light, sans-serif;
    color: #fff;
}

.categories {
    display: flex;
    margin-bottom: 5%;
}

.a-categories {
    display: inline-block;
}

.categories h1{
    font-size: 48px;
}

.categories a {
    font-size: 20px;
    color: #fff;
    display: block;
    margin-left: 60px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project {
    width: 48%; 
    margin-bottom: 10%;
}

.project img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 5px;
}

.personal-work {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.personal-work a {
    font-family: freight-book, sans-serif;
    font-size: 19px;
    color: #fff;
    text-decoration: none;
}

.personal-work span {
    margin-left: 10px; 
}

.personal-work p {
    margin-top: 15px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .project {
        width: 100%;
    }
}