body{
    font-family: 'Courier New', Courier, monospace;
}

#mainContainer{
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1000px;
    padding: 10px;
}

#header{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#headerLeft{
    width: 50%;
}

#headerRight{
    width: 50%;
}

#headerRight p{
    text-align: right;
}

#content{
    width: 90%;
}

#content p{
    text-align: justify;
}

.highlight{
    font-weight: bold;
    text-decoration: underline;
}

.evenly-div{
    border: 1px solid black;
    display: flex;
    justify-content: space-evenly;
}

.center-div{
    display: flex;
    justify-content: center;
    align-items: center;
}