:root
{
    --primary-color: #fffea3;
    --secondary-color: #a3a3ff;
    --mint-color: #a3ffd0;
    --rosa-color: #ffa3d2;

    --contrast-color: #262626;
}
@font-face
{
  font-family: 'Alfa Slab One';
  src: url('/fonts/AlfaSlabOne-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face
{
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*
{

    color: var(--contrast-color);
    font-family: "Inter", system-ui, sans-serif;
}
body
{
    padding-top: 2rem;
    background-color: var(--primary-color);
}
main
{
    min-height: 100vh;
}
h1
{
    text-align: center;
}
.heading
{
    font-family: "Alfa Slab One", serif;
    font-weight: 400;
    font-style: normal;
}
.lg-container
{
    max-width: 1500px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}
.mt-1
{
    margin-top: 4rem;
}
.flex-col
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.lg-font
{
    font-weight: bold;
    font-size: 1.3rem;
}
.footer-container
{
    background-color: var(--contrast-color);
    color: var(--primary-color);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    text-align: center;
}
.footer-container > a
{
    color: var(--primary-color);
    text-decoration: none;
}
.footer-container > a:hover
{
    color: var(--secondary-color);
    cursor: pointer;
}
ul
{
    list-style-position: inside;
}