* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    width: 80%;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    background-color: #333;
    color: white;
}

header h1 {
    margin: 0;
}

header p {
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

#family {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
}

.family-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

