body {
    margin: 0;
    padding: 0;
    background-image: url('achtergrond.jpg');
    /* Zorg dat dit pad klopt */
    background-size: cover;
    background-position: center;
    font-family: 'Nunito', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #a87c7c;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    color: #b08585;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.about,
.contact img {
    color: #a87c7c;
    font-size: 1rem;
    text-decoration: none;
}

.contact img {
    width: 25px;
    height: 25px;
}

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

.kitty-image img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.message {
    font-size: 1.2rem;
    color: #a87c7c;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    line-height: 1.5;
}

.buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.feeling-button {
    font-size: 1rem;
    padding: 10px;
    background-color: #f8d7da;
    color: #a87c7c;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.feeling-button:hover {
    background-color: #f1c4c8;
    transform: scale(1.05);
}