.page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.corner {
    position: absolute;
    height: auto;

    color: var(--color-secondary);

    z-index: -1;
}
.corner path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2px;
    vector-effect: non-scaling-stroke;
}

.corner.top-left {
    top: 1rem;
    left: -5rem;
}
.corner.top-left svg {
    width: 20rem;
}
@media (min-width: 480px) {
    .corner.top-left svg {
        width: 28rem;
    }
}
@media (min-width: 768px) {
    .corner.top-left svg {
        width: 32rem;
    }
}
@media (min-width: 1024px) {
    .corner.top-left svg {
        width: 36rem;
    }
}
@media (min-width: 1280px) {
    .corner.top-left svg {
        width: 42rem;
    }
}
@media (min-width: 1656px) {
    .corner.top-left svg {
        width: 50rem;
    }
}

.corner.top-right {
    top: -6rem;
    right: -26rem;
}
.corner.top-right svg {
    width: 50rem;
    transform: rotate(50deg) scaleX(-1);
}
@media (min-width: 480px) {
    .corner.top-right svg {
        width: 55rem;
    }
}
@media (min-width: 768px) {
    .corner.top-right svg {
        width: 60rem;
    }
}
@media (min-width: 1024px) {
    .corner.top-right svg {
        width: 65rem;
    }
}
@media (min-width: 1280px) {
    .corner.top-right svg {
        width: 70rem;
    }
}
@media (min-width: 1656px) {
    .corner.top-right svg {
        width: 75rem;
    }
}

.corner.middle-left {
    top: 132vh;
    left: -25rem;
}
.corner.middle-left svg {
    width: 46rem;
    transform: rotate(-95deg) scaleY(-1);
}
@media (min-width: 480px) {
    .corner.middle-left svg {
        width: 48rem;
    }
}
@media (min-width: 768px) {
    .corner.middle-left svg {
        width: 52rem;
    }
}
@media (min-width: 1024px) {
    .corner.middle-left svg {
        width: 53rem;
    }
}
@media (min-width: 1280px) {
    .corner.middle-left svg {
        width: 54rem;
    }
}
@media (min-width: 1656px) {
    .corner.middle-left svg {
        width: 55rem;
    }
}

.corner.middle-right {
    top: 176vh;
    right: -22rem;
}
.corner.middle-right svg {
    width: 41rem;
    transform: rotate(108deg);
}
@media (min-width: 480px) {
    .corner.middle-right svg {
        width: 42rem;
    }
}
@media (min-width: 768px) {
    .corner.middle-right svg {
        width: 43rem;
    }
}
@media (min-width: 1024px) {
    .corner.middle-right svg {
        width: 44rem;
    }
}
@media (min-width: 1280px) {
    .corner.middle-right svg {
        width: 45rem;
    }
}
@media (min-width: 1656px) {
    .corner.middle-right svg {
        width: 46rem;
    }
}

.corner.bottom-right {
    bottom: 8rem;
    right: -11rem;
}
.corner.bottom-right {
    width: 20rem;
    transform: rotate(-71deg) scaleX(-1);
}
@media (min-width: 480px) {
    .corner.bottom-right {
        width: 23rem;
    }
}
@media (min-width: 768px) {
    .corner.bottom-right {
        width: 26rem;
    }
}
@media (min-width: 1024px) {
    .corner.bottom-right {
        width: 28rem;
    }
}
@media (min-width: 1280px) {
    .corner.bottom-right {
        width: 30rem;
    }
}
@media (min-width: 1656px) {
    .corner.bottom-right {
        width: 33rem;
    }
}

.corner.bottom-left {
    bottom: -7rem;
    left: -28rem;
}
.corner.bottom-left {
    width: 48rem;
    transform: rotate(50deg);
}
@media (min-width: 480px) {
    .corner.bottom-left {
        width: 52rem;
    }
}
@media (min-width: 768px) {
    .corner.bottom-left {
        width: 55rem;
    }
}
@media (min-width: 1024px) {
    .corner.bottom-left {
        width: 58rem;
    }
}
@media (min-width: 1280px) {
    .corner.bottom-left {
        width: 62rem;
    }
}
@media (min-width: 1656px) {
    .corner.bottom-left {
        width: 65rem;
    }
}

