body {
    margin: 0;
    padding: 0;
    font-family: "Comic Sans MS", cursive, sans-serif;
    background-color: #e0f7fa;
    text-align: center;
}

header h1 {
    color: #00796b;
    font-size: 3rem;
    margin: 20px 0;
}

.scene {
    position: relative;
    display: inline-block;
}

video {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.snakkeboble {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -100%);
    background: #fff59d;
    color: #000;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 1.5rem;
    max-width: 300px;
    display: none;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out forwards;
}

/* Snakkeboble-pil */
.snakkeboble::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #fff59d;
}

/* Fade-in animasjon */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.neste-knapp {
    size: 10px;
}

.neste-knapp:hover {
    background-color: #388e3c;
}

