/* * { border: 1px solid red; } */

body {
  font-family: Arial;
  background: #f1f1f1;
  padding: 0vw 30vw;
}

/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
  body {
    padding: 0vw 5vw;
  }
}
@media screen and (max-width: 700px) {
  body {
    padding: 0vw 2vw;
  }

  img {
    padding: 15px 0px 0px 0px;
  }
}


.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  padding: 10px;
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
  background: white;
}

.header img {
  height: 50px;
}

.header-left {
  display: flex;
  align-items: stretch;
}

.name-title{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 10px;
}

.name-title * {
  margin: 0px;
  padding: 0px;
  font-size: 15px;
  text-align: start;
}

.header-right {
  padding-top: 5px;
}

.header-right ul {
  margin: 0px;
}

.header-right li {
  list-style-type:none;
}

.header-right a {
  text-decoration: none;
  color: black;
}

.header-right button {
  border-radius: 12px;
  border: 1px solid gray;
  
}

.blog-title * {
  margin: 5px 0px;
  padding: 0px;
  text-align: start;
}

.card {
  margin-top: 20px;
  border: 0px;
  padding: 20px;
  background-color: white;
  
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}
