body {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,  segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto,  arial, sans-serif;
    margin:15px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:100dvh;
}
.content {
    max-width:768px;
}
p {
    font-size: 1.1rem;
}
ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    
}
li {
    list-style: none;
  
}
a {
    text-decoration: none;
    color: rgb(21, 21, 98);
}
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    max-width:100%;
}
.contact-text {
    font-weight: bold;
}
.footer-text {
    color: rgb(21, 21, 98);
    margin-top:30px;
   

}
@media only screen and (max-width: 800px) {
ul{
    flex-direction: column;
    text-align: center;
}
li {
    padding: 20px;
}
.footer-text li {
    padding: 5px, 0;
}
  }