@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.container{
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.3);
    width: 90%;
    max-width: 500px;
    animation: fadeIn 1.5s ease-out;
    border-radius: 25px;
}

h1{
    font-size: 2.2em;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

#compliment{
    margin: 20px 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    transition: opacity 0.3s;
    animation: popUp 0.7s ease;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

button{
    padding: 15px 30px;
    font-size: 1em;
    color: #ff5f6d;
    background-color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.3s, color 0.3s;
}

button:hover{
    transform: scale(1.05);
    background-color: #ffedda;
    color: #ffe0c2;
}

@keyframes fadeIn{
    0%{opacity: 0; transform: translateY(20px);}
    100%{opacity: 1; transform: translateY(0);}
}

@keyframes popUp{
    0%{transform: scale(0.9); opacity: 0;}
    100%{transform: scale(1); opacity: 1;}
}