main {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 100px;
    width: 65%;
}

main h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

main p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.project {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    border: 0.5px solid rgba(68, 68, 68, 0.65);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.project:hover {
    transform: scale(1.05)
}

.project:active {
    transform: scale(0.95)
}

.project img {
    width: 130px;
    height: auto;
    border-radius: 10px;
    border: 0.5px solid rgba(68, 68, 68, 0.65);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-meta {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    text-align: left;
    height: 130px;
}

.project-top {
    display: flex;
    flex-direction: column;
    margin-bottom: auto;
}

.project-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-decoration: none;
}

.project-description {
    font-size: 1em;
    color: #939393;
    margin: 0 0 0 0;
}

.project-technologies {
    color: #939393;
    font-size: 0.9em;
    margin: 0 0 0 0;
    font-weight: 500;
}