.project {
    border: 1px solid white;
    max-width: 730px;

    overflow: hidden;

    max-height: 1000px;
    transition: max-height 1s ease-in-out, max-width 0.5s ease-in-out;
}

.hide-width {
    max-width: 0 !important;
    border: none;
}
.hide-height {
    max-height: 0 !important;
}

.project-padding {
    padding: 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}



.project-info {
    display: flex;
    flex-direction: column;
    gap: 10px;

    max-width: 500px;
}

.project ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;

    flex-wrap: wrap;
}

.project * {
    margin: 0;
}

#projects {
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: margin-bottom 0.6s;
    margin-bottom: 30px;
}

.projects-loading {
    margin-bottom: 300px !important;
}

.project h2::before {
    content: '> ';
}

.ascii {
    background: none !important;
    border: none;

    text-wrap: nowrap;

    width: 90%;

    padding: 0 !important;
    letter-spacing: 1px;
    font-weight: bold;

    font-size: 4px;
    line-height: 7px;

    text-wrap: nowrap;
}


@media (min-width: 450px) {
    .project:nth-child(odd) {
        align-self: flex-start;
    }
    
    .project:nth-child(even) {
        align-self: flex-end;
    }
}

@media (max-width: 700px) {
    .project ul {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .ascii {
        font-size: 3px;
        line-height: 5px;
    }

    #dorm_defender-ascii {
        font-size: 2px;
        line-height: 4.5px;
    }
}

@media (max-width: 410px) {
    .ascii {
        font-size: 2px;
        line-height: 5px;
    }

    #dorm_defender-ascii {
        font-size: 2px;
        line-height: 4.5px;
    }
}

@media (max-width: 350px) {
    .ascii {
        display: none !important;
    }
}