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

.container {
    position: relative;
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.title {
    font-size: 3.5rem;
    font-family: 'Pacifico', cursive;
    color: #b08585;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin: 0;
    text-align: center;
}

nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #a87c7c;
    font-size: 1rem;
}

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

.characters {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}

.character {
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    text-decoration: none;
    color: #b08585;
    font-style: italic;
    width: 220px;
}

.character-frame {
    width: 220px;
    height: 220px;
    transition: transform 0.3s;
    overflow: hidden;
    position: relative;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.still {
    opacity: 1;
}

.gif {
    opacity: 0;
}

.character:hover .still {
    opacity: 0;
}

.character:hover .gif {
    opacity: 1;
}

.character-name {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #b08585;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}