body{
    background-color: #232431;
    cursor:none;
    width: 100vw;
    height: 100vh;
    margin: 0;
}

main {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corners {
    position: relative;
    width: 100%;
    height: 100%;
    transform: scale(1.01);
    z-index: 1;
}

.corner-top-left {
    position: absolute;
    top: 0px;
    left: 0px;
    pointer-events:none;
    animation: cornerHover 4s ease-in-out infinite;
}

.corner-bottom-right {
    position: absolute;
    bottom: 0px;
    right: 0px;
    pointer-events:none;
    animation: cornerHover 4s ease-in-out infinite;
}

.corner-top-right {
    position: absolute;
    top: 0px;
    right: 0px;
    pointer-events:none;
    animation: cornerHover 4s ease-in-out infinite;
}

.corner-bottom-left {
    position: absolute;
    bottom: 0px;
    left: 0px;
    pointer-events:none;
    animation: cornerHover 4s ease-in-out infinite;
}

.corner-top-left,
.corner-top-right,
.corner-bottom-left,
.corner-bottom-right{
    will-change: transform;
}

.particles{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:0;
}

.particle{
    position:absolute;
    will-change:transform,opacity;
}

.custom-cursor{
    position:fixed;
    top:0;
    left:0;
    width:36px;
    height:39px;
    pointer-events:none;
    z-index:99999;
    transform:translate(-50%,-50%);
    will-change:transform;
}

.box {
    width: 100%;
    height: 100%;
    max-width: 720px;
    max-height: 480px;
    background: #2F2942;
    border: solid 4px #DDCDFF;
    border-radius: 24px;
    position: absolute;
    z-index: 2;
}

.box:before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 48px;
    background: #FFCCEB;
    border-radius: 0px 0px 19px 19px;
}

@media (hover:none), (pointer:coarse){
    body{
        cursor:auto;
    }
    .custom-cursor{
        display:none !important;
    }
}

@keyframes cornerHovesr{
    0%{
        transform:translatey(0px) scale(1);
    }
    25%{
        transform:translatey(4px) scale(1.05);
    }
    50%{
        transform:translatey(0px) scale(1.1);
    }
    75%{
        transform:translatey(-4px) scale(1.05);
    }
    100%{
        transform:translatey(0px) scale(1);
    }
}