:root {
    --royal-purple: #6a0dad;
    --gold: #ffd700;
    --dark-crown:  #4b0082;

}

body {
    background: #f9f3ff; 
    font-family:'arial', sans-serif;
} 

.royal-header, .royal-footer {
    background: linear-gradient(to right, var(--royal-purple), var(--darkcrown));
    color: white;
    padding: 2rem;
    text-align: center;

}


.royal-selection {
    background: white ;
    border-radius: 15px;
    box-shadow: 0 5px 15 px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    padding: 2rem;
    max-width: 800px;

}

.royal-button {
    background: var(--gold);
    border:none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
}

#dont-clicl:hover {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% { transform: translateX(0deg); }
    25% { transform: translateX(5deg); }
    50% { transform: translateX(-5deg); }
    75% { transform: translateX(5deg); }
    100% { transform: translateX(0deg); }
}

#dont-click:hover {
    transform: scale(1.1);
}
.royal-button:hover {
    background: var(--dark-crown);
    color: white;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #35424a;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
}

.tagline {
    font-style: italic;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;;
}

.pug-pic {
    width: 200px;
    height: 200px;
    border-radius: 50;
    object-fit: cover;
    border: 3px solid gold;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.pug-title {
    color: #f90;
    font-style: italic;
}

.bio-text { 
    flex: 1;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 20px;
    border: 3px solid gold;
}

.profile-pic ::after {
    content: "👑";
    position: absalute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;

} 

section {
    padding: 20px;
    margin: 20px 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background: #35424a;
    color: white;
}

.highlight {
    background: yellow;
    padding: 2px 5px;
    font-weight: bold;
}

.skills-list li {
  margin: 15px 0;
  font-size: 1.2rem;
}

.emoji {
    font-size: 1.5;
}

#dont-click {
    background: red;
    color: white;
    border:none;
    padding: 3px 8px;
    cursor: pointer;
}