@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Main Container */
.main {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}

.frame {
    width: 300px;
    height: 380px;
    position: absolute;
    top: 30%;
    z-index: 10;
}

.frame-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.frame-wrapper {
    width: 100%;
    height: 100%;
}

.img-frame {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.fractal-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.fractal-left,
.fractal-right {
    height: 100%;
    display: flex;
    flex-direction: row;
}

.img-fractal-left,
.img-fractal-right {
    height: 100%;
    width: 100%;
    object-fit: cover;
}