<>
#homepage-animation {
width: 100%;
position: fixed;
top: 0;
left: 0;
height: 100%;
background-color: white;
z-index: 100000;
display: flex;
}
.animation-content {
margin: auto;
}
.animation-graphic {
position: relative;
width: 240px;
height: 340px;
margin-left: auto;
margin-right: auto;
opacity: 0;
transform: scale(0.25);
animation: scale-fade-in 0.5s forwards 1;
user-select: none;
}
.animation-graphic.scale-fade-out {
animation: scale-fade-out 0.5s forwards 1;
}
@keyframes scale-fade-out {
0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(0.25);
}
}
@keyframes scale-fade-in {
0% {
opacity: 0;
transform: scale(0.25);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.window-scenery-container {
position: absolute;
top: 5%;
left: 4%;
clip-path: path('M220.84,205c0,56.61-45.22,102.51-101,102.51H101C45.21,307.54,0,261.64,0,205V102.51C0,45.89,45.22,0,101,0h18.85c55.78,0,101,45.89,101,102.51Z');
}
.window-scenery-wrapper {
display: flex;
animation: scenery-pan 3.5s infinite 1.05s;
/* transform: translateX(-25%); */
background-color: #1f4074;
}
@keyframes scenery-pan {
0% {
transform: translateX(0);
background-color: #1f4074;
}
33.33% {
transform: translateX(-25%);
background-color: #00818d;
}
66.66% {
transform: translateX(-50%);
background-color: #ceaf87;
}
100% {
transform: translateX(-75%);
background-color: #1f4074;
}
}
.window-frame {
position: relative;
z-index: 100;
}
.window-handler {
display: flex;
backdrop-filter: blur(6px);
clip-path: path('M55.1,0A99.48,99.48,0,0,0,0,16.55a94.73,94.73,0,0,0,53.43,16.5h13a94.71,94.71,0,0,0,53.09-16.27A99.5,99.5,0,0,0,64.1,0Z');
background-color: hsl(255100%100%0.2);
width: 120px;
height: 33px;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
z-index: 10;
top: 5.5%;
}
.window-frame-batik {
position: absolute;
top: 0;
left: 0;
width: 302px;
height: 341px;
z-index: 20;
}
.window-border {
position: absolute;
top: 4.6%;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
width: 216.7px;
z-index: 30;
}
.homepage-animation-text {
font-size: 0.8125rem;
margin-top: 1rem;
text-align: center;
}
.scenery-1 {
width: 220px;
height: 310px;
position: relative;
/* background-color: #1f4074; */
}
.scenery-1 > .floral-extra {
position: absolute;
transform-origin: center center;
bottom: 40%;
left: 5%;
transform: scale(1.5);
}
.scenery-1 > .floral {
position: absolute;
transform-origin: center center;
bottom: -32%;
left: -2%;
transform: rotate(80deg) scale(1-1);
}
.scenery-1 > svg path {
fill: none;
stroke: #ceaf87;
stroke-width: 0.35px;
}
.scenery-2 {
width: 220px;
height: 310px;
position: relative;
/* background-color: #00818d; */
}
.scenery-2 > svg {
position: absolute;
height: auto;
}
.scenery-2 > svg .extra-flower {
display: none;
}
.scenery-2 > svg:nth-child(1) {
width: 140px;
top: -15%;
right: 0;
transform: rotate(0.22turn) scaleY(-1);
}
.scenery-2 > svg:nth-child(2) {
width: 135px;
bottom: -8%;
left: 0;
transform: rotate(0.01turn);
}
.scenery-3 {
width: 220px;
height: 310px;
position: relative;
display: flex;
flex-direction: column;
/* background-color: #ceaf87; */
}
.scenery-3 > svg:nth-child(2) {
margin-top: auto;
}
>