body {
    margin: 0px;
}

header {
    height: 60px;
    width: 100vw;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-family: sans-serif;
    color: #651F21;

    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px 10px rgb(255, 255, 255);
}

#liveDisplay {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    width: 100vw;
    height: max-content;
    background-color: rgb(242, 242, 242);
    box-shadow: 0px 0px 0px 0px;
    transition: box-shadow 120ms ease-in-out, background-color 120ms ease-in-out, boredr-radius 120ms ease-in-out, width 120ms ease-in-out;
}

#liveDisplay p {
    font-family: sans-serif;
    font-size: 16px;
    text-align: center;
    margin: 10px 0px 5px 0px;
    color: rgb(27, 27, 27);
}

#liveDisplay #nextEventInfo p {
    font-size: 20px;
    margin: 5px;
}

#liveDisplay #nextEventInfo .time {
    font-size: 14px;
    color: rgb(24, 133, 0);
    margin-bottom: 10px;
}

#content {
    margin-top: 150px;
    margin-bottom: 70px;
}

#content #barContainer {
    top: 180px;
    left: 31px;
    position: absolute;
    z-index: -1;
}

#content #greenLine {
    width: 4px;
    border-radius: 4px;
    background-color: rgb(0, 255, 0);
    z-index: -1;
    height: 0px;
    transition: height 2000ms ease-in-out;
}

.bulletPointContainer {
    width: 100vw;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.bulletPointContainer p {
    margin: 5px 0px 0px 4px;
    font-family: sans-serif;
    font-size: 18px;
    color: rgb(26, 26, 26);
}

.bulletPointContainer h1 {
    margin: 1px 0px 0px 4px;
    font-family: sans-serif;
    font-size: 24px;
    color: rgb(26, 26, 26);
}

.bulletPointContainer .time {
    color: #651F21;
    width: max-content;
    font-weight: 550;
}

.bulletPointContainer .imgContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 10px 0px 20px;
    width: max-content;
}

.checkboxIcon {
    height: 30px;
    width: 30px;
    margin: 0px 10px 0px 18px;
}

.lineIcon {
    height: auto;
    width: 3px;
    margin: 4px 0px 0px 30px;
}