amp-web-push-widget button.amp-subscribe { display: inline-flex; align-items: center; border-radius: 5px; border: 0; box-sizing: border-box; margin: 0; padding: 10px 15px; cursor: pointer; outline: none; font-size: 15px; font-weight: 500; background: #4A90E2; margin-top: 7px; color: white; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5); -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } .amp-logo amp-img{width:190px} .amp-menu input{display:none;}.amp-menu li.menu-item-has-children ul{display:none;}.amp-menu li{position:relative;display:block;}.amp-menu > li a{display:block;} /* Inline styles */ div.acss0f1bf{display:none;} .icon-widgets:before {content: "\e1bd";}.icon-search:before {content: "\e8b6";}.icon-shopping-cart:after {content: "\e8cc";}

Which Celebrity Would Be Your Best Friend?

 

 

Which Celebrity Would Be Your Best Friend?

Take this quiz to find out which celebrity matches your personality!

Question 1: What’s your ideal weekend?

Question 2: What’s your communication style?

Question 3: Choose a fashion style:

Question 4: What’s your sense of humor like?

Question 5: How do you handle conflict?

function nextQuestion(qNum, answer) { answers[qNum-1] = answer; document.getElementById(`q${qNum}`).style.display = 'none';

if (qNum < 5) { document.getElementById(`q${qNum+1}`).style.display = 'block'; } else { showResult(); } } function showResult() { // Simple scoring - count which letter appears most in answers const count = {a:0, b:0, c:0, d:0}; answers.forEach(ans => count[ans]++);

let max = 0; let resultKey = 'a'; for (const key in count) { if (count[key] > max) { max = count[key]; resultKey = key; } }

document.getElementById('quiz-container').style.display = 'none'; const resultDiv = document.getElementById('result'); resultDiv.style.display = 'block'; resultDiv.innerHTML = `

Your Celebrity Best Friend Is...

${celebrities[resultKey]}

`; }