.container-project {
    background-color: #DCE0E4;
    display: flex;
    padding: 70px 0px;
    flex-direction: column;
    align-items: center;
    margin: 0px;
}

.container-project h1 {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    margin: 0px 0px 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
}

.add-project {
    display: flex;
    width: 40vw;
    padding: 30px 30px 20px;
    flex-direction: column;
    align-items: center;
    background: rgba(248, 122, 83, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.678);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.433);
}

.add-project form {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.add-project div {
    display: flex;
    width: 100%;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.add-project div input {
    display: flex;
    height: 30px;
}

.add-project div input,
textarea {
    border-radius: 3px;
    border: none;
    box-shadow: 0px 0px 4px .5px rgba(0, 0, 0, 0.572);
    padding: 0px 0px 0px 5px;
}

textarea {
    height: 150px;
}

.add-project div.date-project {
    flex-direction: row;
    gap: 10px;
}

.add-project div span {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.add-project label {
    text-transform: capitalize;
    margin-bottom: 5px;
}

.add-project textarea {
    resize: none;
    text-transform: capitalize;
}

.add-project div.input-technologi div.checkbox-technologi {
    flex-direction: row;
    flex-wrap: wrap;
}

div.checkbox-technologi span {
    display: flex;
    flex-direction: row;
    width: 50%;
    height: 20px;
    text-transform: uppercase;
    gap: 12px;
    margin: 0px 0px 15px;
    padding: 0px 0px 0px 15px;
    box-sizing: border-box;
}

div.checkbox-technologi span label {
    display: flex;
    height: 100%;
    align-items: center;
}

.add-project div.input-technologi input {
    width: 20px;
    height: 20px;
    background-color: whitesmoke;
    border: 1px solid black;
    transition: all .5s ease-in-out;
}

.add-project input[type="submit"] {
    width: 80px;
    border-radius: 15px;
    background-color: black;
    color: white;
}

.container-submit {
    margin: 30px 0px 0px;
    display: flex;
    align-items: end;
}

.add-project input[type="file"] {
    background-color: white;
    display: flex;
    align-items: center;
    padding: 10px 0px 0px 10px;
    box-sizing: content-box;
}

.date-post {
    margin: 0;
}

.date-post div:nth-child(1) {
    margin: 0;
    display: flex;
    justify-content: space-between;
    color: silver
}

.date-post div:nth-child(1) * {
    color: silver
}


@media (max-width : 768px) {
    .add-project {
        width: 80%;
        box-sizing: border-box;
    }
}

@media (max-width : 576px) {
    .add-project {
        width: 100%;
        padding: 10px;
    }
}