/* Simple Centered Logo and Text with Matching Pink Background */

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

body {
    background-color: rgb(229, 53, 152); /* Exact matching pink background from the image */
    font-family: 'Syne', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.logo {
    width: 240px; /* Sized up slightly for a clean look */
    height: 240px;
    object-fit: cover;
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    text-transform: lowercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

