.picture {
    z-index: -1000;
    position: relative;
    background-color: black;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.picture1 {
    min-height: 400px;
    background-image: url('../pictures/vos_rook.jpg');
}

.picture2 {
    min-height: 800px;
    background-image: url('../pictures/kim.jpg');
}

.picture div {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
}

.picture div span {
    padding: 1rem;
    color: var(--pic_text_color);
    border: 1px solid var(--pic_text_color);
    background: var(--pic_text_bg);
    backdrop-filter: blur(1rem);
    font-weight: 500;
    font-size: 4rem;
}

.picture1 div span {
    --pic_text_color: var(--accent);
    --pic_text_bg: hsl(0 0 0 / .5);
}

.picture2 div span {
    --pic_text_color: var(--background);
    --pic_text_bg: hsl(0 0 100% / .5);
}

.homeContainer {
    color: var(--white);
}

.homeContainer .title {
    background: oklch(from var(--background) l c h /.5);
    backdrop-filter: blur(1rem);
}

.title h1 {
    padding: 2rem;
    font-size: clamp(2rem, 10vh, 5rem);
}

.homeContent section {
    font-size: 2rem;
    padding-inline: 10rem;
    padding-block: 2rem;
    margin: 0;
}

.homeContent section.intro {
    background-color: var(--white);
    text-align: justify;
}

.homeContent section.what {
    background-color: var(--accent);
    text-align: justify;
}

.homeContent section.you {
    font-weight: 400;
    background-color: var(--background);
    color: var(--white);
    text-align: justify;
}

.homeContent section.rsponse {
    width: 80vw;
    left: 0;
}

.ctaContainer {
    padding-block: 5rem;
    min-height: 600px;
}

.cta {
    width: 100%;
    text-align: center;
    align-content: center;
}

.cta a {
    font-size: 3rem;
    font-weight: 500;
    padding: 2rem;
    color: var(--background);
    border: 1px solid var(--background);
    background:  hsl(from var(--background) h s l / .5);
    text-decoration: none;
}