body {
    margin: 0;
    padding: 0;
    font-family: Arial;
}
#root {
    min-height:100svh;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
}
#project-list {
    padding: 50px 0;
}
.project-container {
    border: 2px solid black;
    border-radius: 4px;
    width: 400px;
    margin: 20px;
    box-sizing: border-box;
}
.project-body {
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 4px;
    border-width: 0 0 2px 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.project-title {
    margin: 0 0 5px 0;
    font-size: 21px;
}
.project-description {
    margin: 0 0 10px 0;
    color: #505050;
}
.project-technologies, .project-developers {
    display: flex;
}
.project-developers {
    padding: 5px 10px;
}
.project-dev {
    display: flex;
    align-items: center;
}
.project-dev:hover {
    background-color: #f0f0f0;
}
.project-dev-name {
    margin: 0 8px 0 5px
}
.dev-icon {
    border: 0 solid black;
    border-right-width: 1px ;
    border-radius: 40px;
    height: 15px;
    width: 15px;
    padding: 6px;
}
.project-technology, .project-dev {
    border: 1px solid black;
    border-radius: 30px;
    margin: 3px;
    font-size: 12px;
    font-weight: 600;
}
.project-technology {
    padding: 4px 8px;
}
.project-link-section {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.project-link {
    font-weight: 600;
    font-size: small;
    margin-left: 4px;
    color: #555555;
}
a {
    text-decoration: none;
    color: black;
}
.project-link:hover {
    text-decoration: underline;
}
.relative-position {
    position: relative;
}
.project-date {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px;
    border: 2px solid black;
    border-width: 0 0 2px 2px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .project-container {
        width: 320px;
    }
}