/* this is some magical font-importing. you'll learn about it later. */ @import url('https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,400;1,900&display=swap'); body { margin: 0; background: #eee; font-family: Besley, serif; } .header { background: white; border-bottom: 1px solid #ddd; box-shadow: 0 0 8px rgba(0,0,0,.1); display: flex; padding: 10px 16px; align-items: center; gap: 20px; } .profile-image { background: rebeccapurple; box-shadow: inset 2px 2px 4px rgba(0,0,0,.5); border-radius: 50%; width: 48px; height: 48px; } .logo { color: rebeccapurple; font-size: 32px; font-weight: 900; font-style: italic; } button { border: none; border-radius: 8px; background: rebeccapurple; color: white; padding: 8px 24px; height: fit-content; margin-left: auto; } a { /* this removes the line under our links */ text-decoration: none; color: rebeccapurple; } ul { list-style-type: none; display: flex; padding: 0; gap: 12px; }