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

body {
    background-color: #f5f5f5;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.logo {
    max-width: 100px;
    height: auto;
    border-radius: 16px;
}

.title {
    margin-top: 20px;
    color: #999999;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 24px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
} 