@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body{
    display: flex;
    flex-direction: column;  
    background: linear-gradient(-225deg, #4013D2, #CC208E);
    font-family: 'SUIT-Regular', sans-serif;
    margin: 0; 
    box-sizing: border-box;
    min-height: 100vh;
    color:white;
}

main {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.img1, .img2 {
    position: absolute;
}


.img1 {
    height: 94%;
    transform: translateY(3%);
    z-index: 3;
    transition: transform 0.5s ease;
}

.img1:hover {
    transform: scale(1.2) rotate(10deg); 
}

.img2{
    height: 24%;
    transform: translateX(-2%);
    z-index: 1;
}

.divider {
    border: none;
    height: 2px;
    background-color: white; 
    width: 100%;
    position: absolute;
    bottom: 1%;
    z-index: 2;
}

.p3 {
    text-align: center;
    font-size: 1.5em;
    animation: blink 1s infinite;
    margin-top: 1em;
   }
   @keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }