@font-face {
  font-family: 'SHOWG';
  src: url('https://static.wfonts.com/data/2014/12/31/showcard-gothic/SHOWG.woff') format('woff');
  font-display: swap;
}
header {
    background-color: #333;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
header a {
    text-decoration: none;
    color: white;
    font-family: SHOWG;
}
body {
    font-family: SHOWG;
    text-align: center;
    align-items: center;
}
body h1 {
    color: black;
}
footer {
    position: sticky;
    bottom: 0;
    border-radius: 10px;
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem;
}