*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
}

html, body {
    height: 100%;
    overflow: hidden;
}

.container
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    display:flex ;
    justify-content: center;
    align-items: center;
    background: #e80202;
    overflow: hidden ;
}

img{
    z-index: 1000;
    width: clamp(260px, 38vw, 560px);
    max-height: 72svh;
    object-fit: contain;
    padding-right: 5rem;
}

h1{
    color: aliceblue;
    text-align: center;
    font-size: clamp(2.2rem, 6vw, 4em);
    z-index: 1000;
    font-family: "Love Ya Like A Sister", cursive;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 820px) {
    .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    img {
        padding-right: 0;
        width: min(78vw, 420px);
        max-height: 52svh;
    }
}


.heart{
    position: absolute;
    width: 40px;
    height: 40px;
    background: #e80202;
    transform: rotate(45deg);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.2) ;
}

.heart:before{
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e80202;
    border-radius: 50%;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1) ;
}

.heart:after{
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #e80202 ;
    border-radius: 50%;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1) ;
}

.watermark {
    color: BLACK;
}

a{
    text-decoration: none;
    color: black;
}