.focus {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.focus-container {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.focus-anim .focus-detail {
    animation: cometo-screen linear forwards;
    animation-timeline: view();
    animation-range-start: 200px;
    animation-range-end: 650px;
    transform: translateX(-100px);
    opacity: 0;
}
.focus-anim-r .focus-detail {
    animation: cometo-screen linear forwards;
    animation-timeline: view();
    animation-range-start: 200px;
    animation-range-end: 650px;
    transform: translateX(100px);
    opacity: 0;
}
.focus-detail {
    width: 50%;
}
.focus-detail h1 {
    padding-bottom: 1rem;
}
.focus-detail p {
    font-size: 20px;
    margin-bottom: 2rem;
}
.focus-detail a {
    font-size: 20px;
}
.focus-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.focus-img {
    width: 50%;
    height: 100%;
    user-select: none;
    pointer-events: none;
    border-radius: 20px;
}
.focus-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
.focus-anim .focus-img {
    animation: cometo-screen linear forwards;
    animation-timeline: view();
    animation-range-start: 200px;
    animation-range-end: 650px;
    transform: translateX(100px);
    opacity: 0;
}
.focus-anim-r .focus-img {
    animation: cometo-screen linear forwards;
    animation-timeline: view();
    animation-range-start: 200px;
    animation-range-end: 650px;
    transform: translateX(-100px);
    opacity: 0;
}