.projects_phone_container {
    display: none;
    height: fit-content;
    width: 100vw;
    flex-direction: column;
}

@media (max-width: 800px) {
    .projects_phone_container {
        display: flex;
    }
}

.project_phone {
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: rgba(0, 0, 0, 0.329);
    padding: var(--padding);
    box-sizing: border-box;
}

.project_phone_txt_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.project_phone_img_container {
    width: 100%;
    height: 100%;
}

.phone_img_container {
    aspect-ratio: 16 / 9;
    width: 150px;
    overflow: hidden;
    border-radius: var(--border);
}

.phone_img_container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}