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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

.content {
    text-align: center;
    max-width: 600px;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background-color: #ddd;
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
}

.image-jack {
    background-color: #2c3e50;
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.2);
}

.image-barbara {
    background-color: #e74c3c;
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.2);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
} 