<a href="https://www.w3cplus.com" target="_blank">Welcome to W3cplus!</a>
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
}

body {
  width: 100vw;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-family: "Exo", Arial, sans-serif;
  background-color: #151522;
  color: #fff;
}

a {
  color: #fff;
  font-size: 1.375rem;
  transition: all 0.2s linear;
  font-family: "Exo", Arial, sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

a:hover {
  color: #ffffffe0;
}

a:focus:not(:focus-visible) {
  outline: none;
  color: #ffeb3b;
  text-decoration-line: underline;
  text-underline-offset: 6px;
  text-decoration-color: #00bcd4;
}

a:focus-visible {
  outline: none;
  color: #00bcd4;
  text-decoration-style: wavy;
  text-underline-offset: 6px;
  text-decoration-color: #ffeb3b;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.