* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #eab676;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav {
  display: flex;
  width: 100%;
  height: 20vh;
  border-bottom: 1px solid #333;
}

nav h1 {
  font-family: monospace;
  align-self: center;
  justify-self: center;
  text-transform: capitalize;
}

nav img {
  width: 10rem;
}

.container {
 display: flex;
 margin: 0 auto;
 flex-direction: column;
 align-items: center;
width: 80%;
gap: 2rem;
margin-bottom: 1rem;
}

button {
  border: none;
  width: 8rem;
  height: 3rem;
  background-color: #e28743;
  color: #333;
  border-radius: 15px;
  cursor: pointer;
}

button:hover {
  background-color: #c45c0e;
}

.container img {
  max-width: 20rem;
}

.fact {
  font: 1.5rem monospace;
  
}


@media (max-width: 20rem ){
    .container img{
        width: 15rem ;
    }
}