@font-face {
font-family: 'Atkinson Hyperlegible Next';
src: url('/fonts/AtkinsonHyperlegibleNext-Regular.woff2') format('woff2'),
    url('/fonts/AtkinsonHyperlegibleNext-Regular.ttf') format('truetype');
font-weight: 400; 
font-style: normal;
font-display: swap; 
}


@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('/fonts/AtkinsonHyperlegibleNext-RegularItalic.woff2') format('woff2'),
        url('/fonts/AtkinsonHyperlegibleNext-RegularItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

body {
    background-color: #e673ba;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
main {
    background-color: #f0f8ff; /* Light bluish off-white */
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
p, ul, h1 {
    font-family: "Atkinson Hyperlegible Next";
    color: #333;
}
p, h1 {
    text-align: center;
}
p {
    margin-bottom: 20px;
    font-size: 1.2vh;
}
a:link {
  color: #e673ba;
}
a:visited {
  color: #911363;
}
a:hover {
  color: #d94e8c;
}
a:active {
  color: #e673ba;
}
em {
    font-style: italic;
}
li {
    margin-bottom: 5px;
}
ul {
    font-size: 1.8vh;
    text-align: left;
}