@font-face {
  font-display: swap;
  font-family: 'Racing Sans One';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/racing-sans-one-v17-latin-regular.woff2') format('woff2');
}

body {
  font-family: 'Racing Sans One';
  background-color: greenyellow;
  background-image: url(img/flag.svg);
  background-position: 50% 90%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100vh;
  color: black;
  padding: 30px;
}

h1 {
  font-size: 1.6em;
}

h1 > span {
  text-decoration: underline;
}

p > span {
  color: darkgreen;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.btn {
  background-color: black;
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  border-radius: 15px;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.btn svg {
  fill: currentColor;
}