#main{
    margin-top: 4em;
    margin-left: 1em;
}

.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.titleContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Orbitron;
    font-weight: 100;
    font-size: 2em;
    background: linear-gradient(
        to right,
        var(--color-socials),
        var(--color-primary),
        var(--color-primary)
    );
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 6px var(--color-socials);
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
}

.project{
    margin: 1em;
    padding: 1em;
    border-radius: 15px;
    width: 30%;
    background-color: black;
    opacity: 0.9;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:start;
}

.title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.discription {
    font-size: 1.3em;
    margin-bottom: 0.8em;
}

.content {
    font-size: 1em;
    margin-bottom: 2em;
}

.read-more {
    font-size: 1.2em;
    text-decoration: none;
    color: #f1c40f;
}

.read-more:hover {
    color: white;
}

.foot{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

@media screen and (max-width: 768px){
    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .project{
        width: 60%;
    }
    
}