.intro-container {
    font-family: "MS PGothic", "MS Gothic", "Osaka", monospace;
    font-size: 16px;

    max-width: 900px;
    margin-left: auto;
    margin-right: auto;

    padding: 10px;

    display: flex;
    flex-direction: column;
}

.body-container {
    font-family: "MS PGothic", "MS Gothic", "Osaka", monospace;
    font-size: 16px;

    max-width: 900px;
    margin-left: auto;
    margin-right: auto;

    padding: 10px;
    margin-bottom: 20px;

    display: flex;
    flex-direction: row;
    gap: 10px;
}

.left-column {
    width: 75%;
}

.right-column {
    display: flex;
    flex-direction: column;
    width: 25%;

    gap: 8px;
}

.intro {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: #000000 solid 1px;
}

.intro-border {
    background-color: #cccccc;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 3px;
    padding-right: 3px;

    margin-top: 15px;
}
.intro-border2 {
    background-color: #0000aa;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 3px;
    padding-right: 3px;

    margin-bottom: 10px;
}
.intro-border-text {
    color: #000000;
    font-weight: bold;
}
.intro-border2-text {
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
}

.projects {
    display: flex;
    flex-direction: column;

    border: #95db00 solid 5px;
    border-radius: 10px;
}

.projects-title {
    background-color: #95db00;
    margin: 0;
    padding: 0;
    padding-left: 3px;
    padding-bottom: 3px;
    color: #ffffff;
}

.project-card {
    display: flex;
    flex-direction: row;
    padding: 10px;
    gap: 10px;
}

.project-thumbnail {
    width: 150px;
    height: 50px;

    object-fit: fill;
    object-position: center;
    
    border: 3px solid #ffffff;
    box-shadow: 2px 2px 0px #000000;
}

.project-title {
    margin: 0;
    padding: 0;
}

.sidebar-card {
    display: flex;
    flex-direction: column;

    border: #dddddd solid 5px;
    border-radius: 10px;
}

.tools-title-text {
    margin: 0;
    padding: 0;

    padding-left: 2px;
    font-weight: bold;
}

.tools-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 5px;
    padding-bottom: 3px;

    background-color: #dddddd;
}

.sidebar-card ul {
    margin: 0;
    padding: 0;

    list-style-type: square;
    padding-left: 25px;
}

.sidebar-card ul li {
    border-bottom: 1px dotted #dddddd;

    padding-top: 6px;
    padding-bottom: 6px;
}

.sidebar-card ul li::marker {
    color: #95db00
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

.sidebar-card-img {
    width: 20px;
    height: 20px;

    object-fit: fill;
}

.sidebar-card.about-me {
    border: #95db00 solid 5px;
}

.sidebar-card.about-me .tools-title {
    background-color: #95db00;
    color: #ffffff;
}

.sidebar-card-text {
    padding-left: 8px;
}

.intro-container.footer {
    align-items: center;
    border-top: #000000 solid 1px;
}

.project-text ul {
    list-style-type: square;
}

.project-text ul li {
    margin-bottom: 10px;
}

.project-text ul li::marker {
    color:#95db00;
}