.newLine {
    margin: 0;
    width: 100%;
}

.fullLine {
    width: 90%;
}

.halfLine {
    width: 50%;
}

body {
    background-color: rgba(255, 216, 144, 0.5);
}

.body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 900px;
    margin: auto;
    font-family: sans-serif;
    border: 1px solid rgb(105, 105, 105);
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.9);
}

.header {
    width: 85%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.headerName {
    text-align: right;
}

.headerLinks {
    text-align: left;
}

.headerLinks ul {
    list-style-type: none;
    overflow: hidden;
}

.headerLinks a {
    font-size: 1.1em;
    text-decoration: none;
    text-align: center;
    display: block;
    border: 1px solid black;
    border-radius: 9px;
    padding: 0.3em;
    padding-right: 0.6em;
    padding-left: 0.6em;
    color: black;
}

.headerLinks a:hover {
    background-color: rgba(0, 138, 53, 0.9);
    color: white;
}

.footer {
    font-family: sans-serif;
    font-size: 70%;
    text-align: center;
    width: 70%;
    margin: auto;
}