@font-face 
{
  font-family: Deltarune; 
  src: url(assets/fonts/deltarune.woff2);
}

body
{
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: black;
    text-shadow: 1px .7px #121f91;
    font-family: Deltarune;
    color: white;
}

.entry
{
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sectionHeader
{
    font-size: 2rem;
    color: #ffff00
    
}

li {
    list-style: none;
}


.check {
    appearance: none;
    width: 20px;
    height: 20px;
    border:2px solid rgb(255, 255, 255);
    cursor: pointer;
    position: relative;
}

.check:checked::after {
    content: 'X';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.check:checked {
    background-color: rgb(0, 0, 0);
}