* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background: #f8f0e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

.loading-container {
    text-align: center;
}

.logo {
    width: 550px;
    max-width: 80%;
    margin-bottom: 26px;
}

.heartbeat {
    animation: heartbeat 1.6s ease-in-out infinite;
}

@keyframes heartbeat {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.12); } 
    100% { transform: scale(1); }
}