* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  font-size: 14px;
  margin: 0;
  padding: 0;}

.row {  
  display: flex;
  flex-wrap: wrap;
}

.left {
  flex: 30%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.right {
  flex: 25%;
  padding: 20px;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main {
  flex: 45%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  padding: 10px;
  max-width: 100%;
}

a {
  color: #1A3867;
  text-decoration: none;
}

a:hover {
  color: black;
}

.txt {
  max-width: 80%;
}

.logo {
  max-width: 50%;
}

.copyright {
  max-width: 70%;  
  font-size: 12px;
  margin: auto;
  text-align: center;
}

footer {
  padding: 20px;
  color: #8591A4;
  background: #1A3867;
  
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row, .navbar {   
    flex-direction: column;
  }
}