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


.container{
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(241, 191, 184);
}

.title{
    font-size: 40px;
    color: rgb(92, 92, 92);
    letter-spacing: 5px;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

p{
    font-size: 20px;
    color: rgb(31, 31, 31);
    letter-spacing: 3px;
    text-transform: capitalize;
}

.hearts{
    font-size: 23px;
    color:red;
    font-weight: bold;
    position: fixed;
    top: -1vh;
    transform: translateY(0%);
    left: 0;
    animation: fall 3s ease-in infinite;
}

@keyframes fall{
    to{
        transform: translateY(100vh);
    }
}

@media screen and (max-width: 550px){
    p{
        font-size: 13px;
        color: rgb(31, 31, 31);
        letter-spacing: 2px;
        line-height: 20px;

    }

    .title{
        font-size: 30px;
    }
    
}

@media screen and (max-width: 330px){

    p{
        text-align:left;
    }

    .container{
        padding-left: 5vw;
        padding-right: 5vw;
        align-items:baseline;
    }
    
    
}