.body { 
    padding: 0; 
    margin: 0; 
} 

.container{ 
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
} 


.flexRow{ 
    width: 70%;
    display: flex; 
    flex-direction: row;
    background-color: aliceblue;
}

.headerBox{
    width: 20%;
    border-style: groove;
    text-align: center;
    text-wrap: wrap;
}

.box{
    width: auto;
    border-style: groove;
    flex: 1 1 0;
    padding: 10px;
    text-align: start;
    max-width: 80%;
}

h1 {
    color: #FF5733;
    font-family: 'Lato', sans-serif;
    font-size: 25px;
}

h2 {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    color: #FF5733;
}

li {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
}

p{
    font-family: 'Lato', sans-serif;
}

.workHead {
    font-size: 18px;
    text-decoration: underline;
}

.head {
    font-size: 20px;
    font-weight: 1000;
}

a:link {
    color: #071DE6;
}

a:visited {
    color: #3C109D;
}

a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}
