body,
.jumbotron {
  padding: 30px;
}

body {
  background-image: url('../img/bgImage.jpg');
  background-size: cover;
}

.content {
  font-size: 19px;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  border-radius: 5px;
}

.floater {
  background: #FFF;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.4) all;
  margin-bottom: 30px;
  z-index: 11;
}

.floater input[type=text] {
  padding: 30px 20px;
  border: none;
  box-shadow: none;
  font-size: 14px;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.4) all;
}

.floater-bottom {
  padding: 6px 10px 8px;
  text-align: right;
  border-top: 1px solid #DDD;
}

.floater-bottom button {
  padding: 4px 8px;
  font-size: 10px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s ease opacity;
  z-index: 10;
  pointer-events: none;
}

body.show-floater .floater {
  transform: scale(1.1);
}

body.show-floater .floater input[type=text] {
  padding: 50px 20px;
  font-size: 18px;
}

body.show-floater .overlay {
  opacity: 1;
  pointer-events: all;
}

/* =============================== */

.bookmarks-list {
  position: relative;
  z-index: 9;
}

.bookmark {
  display: flex;
  position: relative;
  background: #FFF;
  color: #999;
  padding: 20px;
  transition: 0.3s ease all;
  border-bottom: 1px solid #DDD;
  font-size: 16px;
}

.bookmark:hover {
  color: #1CE;
  text-decoration: none;
}

.bookmark:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.bookmark:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom: 0;
}

.bookmark .img {
  background-color: #DDD;
  border-radius: 3px;
  background-image: url('https://picsum.photos/200');
  background-size: cover;
  background-position: top center;
  width: 120px;
  height: 60px;
  margin-right: 20px;
}

.bookmark .title {
  display: flex;
  align-items: center;
}

.bookmark .removeIcon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #EEE;
  font-size: 12px;
  transition: 0.3s ease color;
  cursor: pointer;
}

.bookmark:hover .removeIcon {
  color: #AAA;
}