main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
    width: 100%;
}

.work {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 95%;
    max-width: 1400px;
}

.subtitle {
    opacity: 0.5;
    margin-bottom: 10px;
}

.about-data {
    display: grid;
    grid-template-columns: 2fr 1fr;

}

.description {
    font-size: 0.95rem;
    line-height: 1.5rem;
}

.work-description {
    font-family: sans-serif;
    font-size: 0.95rem;
    line-height: 1.5rem;
    font-weight: 100;
    opacity: 0.7;
}

.work-experience {
    margin-bottom: 20px;
}

.experience-title {
    margin-bottom: 7px;
}

main a {
    border-bottom: 1.5px dotted rgb(70, 70, 70);
    transition: opacity 0.2s ease-in-out;
}

main a:hover {
    opacity: 0.5;
}


.work-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.work-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-details {
    padding: 10px 0px;
}

.work-title {
    font-size: 1rem;
    line-height: 2rem;
}

.work-position {
    opacity: 0.5;
}

.work-container {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 800px) {
    .work {
        grid-template-columns: 1fr;
    }
}