body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(to bottom, #D50E36 0%, #2A0A15 30%, #1A1A1A 60%);
    font-family: 'custom-font3', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.stripe {
    font-family: "custom-font4";
    display: flex;
    align-items: center;  
    background-color: #1A1A1A;
    color: #B49FCC;
    height: 35px;
    width: 100%;                 
    margin: 0;
    position: absolute;
    top: 0;  
    overflow: hidden;  
}

.stripe span {
    display: inline-block;  
    white-space: nowrap; 
}

.stripe .content {
    display: flex; 
    animation: scrollText 40s linear infinite;  
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);  
    }
    100% {
        transform: translateX(-100%);  
    }
}




@font-face {
    font-family: "custom-font3";
    src: url("fonts/custom-font3.woff") format("woff");
}

@font-face {
    font-family: "custom-font4";
    src: url("fonts/PPNeueMontreal-Regular.woff2") format("woff");
}
h3{
    font-family: "custom-font3";
    font-size: 110px;
    color: #B49FCC;
    z-index: 1;
    transform: rotate(338deg);
    position: relative; 
    top: -30px;  
    font-weight: normal;
}
h1 {
    font-size: 350px;
    color: #B49FCC;
    margin: 0;
    position: absolute;
    top: 55%;
    left: 52%;
    transform: translate(-60%, 5%);
    z-index: 1; 
    font-kerning: auto;
    font-weight: normal;
}
.R{
    top: 55%;
    left: 39%;
    z-index: 4;
}
.P{
    top: 55%;
    left: 48.78%;
    z-index: 4;
}
.shape-container {
    position: relative;
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    z-index: 2; 
}

.shape {
    position: absolute;
    width: 20vw;
    height: 20vw;
    background-color: transparent;
    border: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    
  
}
.shape:hover {
    animation: spin 5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.heart {
    background-image: url('Heart.png');
    top: 10%;
    right: 50%;
    transform: rotate(-2deg);
    z-index: 3; 
    width: 500px;
    height: 500px;
    max-width: 800px;
    max-height: 800px;
    background-size: contain;
    position: absolute; 
}

.flower {
    background-image: url('Flower.png');
    top: -5%;
    right: -15%;
    transform: rotate(22deg);
    z-index: 1; 
    max-width: 200px;
    max-height: 200px;
}

.star {
    background-image: url('Star.png');
    position: absolute;
    bottom: 10%;
    left: 148%;
    transform: rotate(25deg);
    z-index: 1; 
    max-width: 300px;
    max-height: 300px;
}

.flying-object {
    position: absolute;
    width: 150px;
    transform: rotate(125deg);
    height: auto;
    animation: bounce 15s linear infinite;
    z-index: 10;
}

.flying-object img {
    width: 100%;
    height: auto;
    transform: rotate(10deg);
}

@keyframes bounce {
    0% {
        top: 10%;
        left: 10%;
    }
    25% {
        top: 10%;
        left: 90%;
    }
    50% {
        top: 90%;
        left: 90%;
    }
    75% {
        top: 90%;
        left: 10%;
    }
    100% {
        top: 10%;
        left: 10%;
    }
}

@keyframes spin-flying {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.green-button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #D50E36;
    color: #B49FCC;
    font-size: 17px;
    font-family: 'custom-font4', sans-serif;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    position: absolute;
    transform: rotate(15deg);
    bottom: 30px;
    right: 25px;
    z-index: 10;
}


.green-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    transition-delay: 0.1s; 
}

.green-button:active {
    transform: scale(2); 
}

.splitt-word {
    display: flex;
    justify-content: center;
    letter-spacing: 0.1em; 
    position: relative; 
    transition: letter-spacing 1s ease-in-out; 
}

.splitt-word span {
    display: inline-block;
}


.splitt-word:hover {
    letter-spacing: 0.2em;
}









  

