* {
  box-sizing: border-box;
  padding: 0px;
  margin: 5px;
}
.name {
  color: purple;
}
a {
  text-decoration: none;
  color: white;
}
nav {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 5px solid red;
  background-color: green;
}
.random {
  cursor: pointer;
}
.random-img-details {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.images {
  display: flex;
  flex-wrap: wrap;
  background-color: #fd9780;
}
img {
  height: 200px;
  margin: 20px 5px;
  width: 200px;
}
.img-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.info {
  margin-bottom: 20px;
  background-color: pink;
  padding: 10px;
}
.top-img-article {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 10px 20px;
  border: 3px solid grey;
  background-color: lightblue;
  width: 250px;
  height: 350px;
  padding: 0;
}
