html{
  overflow-x: hidden;  
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  background-color: rgba(158, 158, 158, 0.18);
}
/* Header */
header {
  background: #35424a;
  color: #f5ecec;
  border-bottom: #cf5330 5px solid;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul {
  list-style: none;
  
}
nav{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  
  
}
header a {
  text-decoration: none;
  color: rgb(255, 255, 245);
  font-weight: bold;
  padding: 5px 12px;
}
header a:hover {
  color: rgb(240, 6, 6);
}

section h3 {
  color: #0f3349;
  margin-bottom: 5px;
  font-size: 1.2em;
}
section p {
  margin-bottom: 5px;
  color: rgb(1, 0, 2);
}

/* Global */
.container {
  display: flex;
  flex-wrap: wrap;
gap: 10px;
}
.container div {
  max-width: 150px;
  justify-content: center;
}

section img {
  width: 150px;
  height: 200px;
  border: #4e3c37;

}

.container p {
  margin-top: 0;
  padding-top: 0;
  justify-self: center;
}

