body {
    margin: 0;
    font-family: 'Lato', 'Helvetica', 'Arial', 'sans-serif';
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

html *{
    box-sizing: border-box;

}

.lawFirmText {
    font-size: 40px;
    line-height: 40px;
}

.abhayaLibre {
    font-family: 'Abhaya Libre', 'Helvetica', 'Arial', 'sans-serif';
}
  
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
}
  
header {
    padding: 40px 20px 10px;
}

.width800 {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
  
.logo {
    max-width: 100%;
}

.logo-title {
    top: -10000px;
    left: -10000px;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
}

.logo-title span {
    align-self: flex-end;
}
  
h1 {
    margin: 0;
    font-size: 36px;
    font-weight: normal;
}
  
h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0 20px;
    color: #333;
}
  
.divider {
    background-color: #253E5D;
    height: 60px;
    width: 100%;
}
  
main {
    flex: 1;
    padding: 20px;
}
  
main h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

main p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}
  
footer {
    background-color: #253E5D;
    color: white;
    font-size: 14px;
    padding: 25px 10px;
    text-align: center;
    width: 100%;
}
  
footer a {
    color: #fff;
    text-decoration: underline;
    margin: 0 5px;
}
  