.projbase {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.project {
    background: #323232;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.projectdesc {
    padding: 20px 0;
    font-size: 14pt;
}

.projecttype {
    display: inline-block;
    color: #212121;
    font-size: 14pt;
    padding: 2px 5px;
    border-radius: 10px 3px;
}

.projectlogo {
    display: grid;
}

.projectlogobg {
    grid-area: 1/1;
    height: 100%;
    width: 150px;
    margin-left: -10px;
    background: #212121;
    transform: skew(-10deg, 0)
}

.projectlogo>img {
    height: 100%;
    width: 119px;
    object-fit: contain;
    margin: auto;
}

.projectname {
    width: 100%;
    background: #212121;
    padding-left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.projectname>h1 {
    text-shadow:
        1px 1px 0 #434343,
        1px 2px 0 #434343,
        1px 3px 0 #434343,
        2px 4px 0 #434343,
        2px 5px 0 #434343;
}

.projectname>h1 {
    margin: 10px 0;
}

.notfound {
    display: none;
}

.projbase>.more {
    background: var(--black-light1);
    padding: 10px 20px;
    font-size: 14pt;
    display: none;
}

.projectlist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
    min-width: 720px;
}
