* {
  margin: 2px;
  top: 2px;
}
.header {
  background-color: #2b3153;
  width: 2000px;
  height: 50px;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  /* display: flex; */
}

.header h1 {
  font-family: "Fira sans", "sans serif";
  color: white;
  padding-top: 0px;
  padding-left: 5px;
  padding-bottom: 5px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50%;
}
*/ .rounded-box {
  background-color: lightgrey;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1px;
  text-align: center;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rounded-box img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.rounded-box .text {
  margin-top: 1px;
  text-align: left;
  justify-content: left;
  background-color: lightgray;
  padding: 10px;
}

.rounded-box .small-text {
  margin-top: 10px;
  text-align: left;
  font-size: 12px;
  color: gray;
}

/* hover up */
.hover-up {
  position: relative;
  transition: all 0.3s ease;
}

.hover-up:hover {
  top: -10px;
}

/* ----- addons from here------- */

.like-button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  border: none;
  background-color: transparent;
  font-size: 24px;
  color: grey;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.like-button:focus {
  outline: black;
}
