How can I remove this weird outline around my element?

Advertisements I am getting a weird outline like something around my button for this styles. Why is it happening. Below is the code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Button</title> <style> button { padding: 1em; background: transparent; border: none; } button:focus { border-radius: 6px; outline: none; box-shadow: 0… Read More How can I remove this weird outline around my element?

border-radius not showing on the top border

Advertisements @import url(‘https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Fraunces:opsz,wght@9..144,700&family=Rye&family=Seymour+One&family=Ultra&display=swap’); * { box-sizing: border-box; } body { background-color: black; } .parent { display: flex; flex-direction: column; max-width: 600px; font-family: “Montserrat”; border-radius: 10px; margin: 20px; background-color: white; } picture { display: block; } img { width: 100%; height: 100%; } .main-content { padding: 1rem; } .cologne { text-transform: uppercase; letter-spacing: 0.5rem; color: #8f8f8f;… Read More border-radius not showing on the top border