body {
    margin: 0;
    padding: 40px;
    font-family: Arial, sans-serif;
    background: #ede4ff;
    text-align: center;
}

.start-screen {
    max-width: 700px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.quiz {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h1 {
    margin-top: 0;
}

#counter {
    color: gray;
}

button {
    background: #c8affa;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    opacity: 0.8;
    transform: translateY(-5px); 
}

#photos {
    margin-top: 20px;
}

#photos img {
    max-width: 100%;
    max-height: 500px;
    margin: 5px;
    border-radius: 15px;
}

#message {
    font-size: 18px;
    font-weight: bold;
    min-height: 30px;
}

.navigation {
    margin-top: 20px;
}



.final-title {
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

#photoContainer {
    position: relative;
    width: 100%;
    height: 400px;
}

.flying-photo {
    position: fixed;
    width: clamp(120px, 25vw, 220px);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition:
        top 2s ease-out,
        left 2s ease-out,
        transform 2s ease-out;
}

center {
        position: fixed;
        width: 100%;
        bottom: 5px;
    }
