* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b7dccb;
}

img{
  width: 25px;
  margin-right: 25px;
}

.main {
  position: relative;
  height: 90vh;
  width: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  background-color: #1b3b2c;
  box-shadow: 0.1px 8px 8px 2px rgba(0, 0, 0, 0.1);
}

.item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 125px;
  box-shadow: 0.1px 8px 8px 2px rgba(0, 0, 0, 0.1);
}

.item:not(:last-child):hover {
  box-shadow: 0.1px 8px 8px 2px rgba(0, 0, 0, 0.1);
}

.main .item:not(:first-child) {
  margin-top: 20px;
}

.main .item:nth-child(2) {
  margin-top: 40px;
}

.main .item:first-child,
.main .item:last-child {
  width: 100%;
  height: 50px;
}

.item .title-container{
  justify-content: center;
  align-items: center;
  display: flex;
  color:#fff;
  font-size:25px;
}

.item .video {
  width: 25%;
  height: 100%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item .video:hover~.detail {
  opacity: 0.5;
}

.item .video video {
  width: 100%;
}

.item .detail {
  margin-left: 10px;
  padding: 0 15px 15px 15px;
  height: 100%;
  width: 75%;
  display: flex;
  flex-direction: column;
}

.item .detail p {
  color: #fff;
}

.item .detail #title {
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.item .detail #desc {
  color: rgba(255, 255, 255, 0.9);
}

/*last item*/
.main .item:last-child {
  justify-content: space-between;
  padding: 0 10px;
  margin-top: 20px;
  box-shadow: none;
}

.main .item:last-child a {
  display: inline-block;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  color: #000;
  background: #ccc;
}

.main .item:last-child a:nth-child(1) {
  margin-right: 10px;
}

/*info*/
.info p {
  color: #fff;
}

/*controlls*/
.controlls a {
  text-decoration: none;
  cursor: pointer;
  font-size: 2em;
  background: none;
  color: #fff;
  border: none;
}

.item .video .controlls {
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.2s;
}

.item .video:hover .controlls {
  z-index: 1;
  opacity: 1;
  transition: 0.2s;
}

/*navbar*/
.navbar {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.navbar .customize {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .customize img{
  width: 25px;
  margin-right: 25px;
}

.navbar p {
  color: #ccc;
  font-size: 1.8em;
}

.navbar .customize a {
  text-decoration: none;
  cursor: pointer;
  font-size: 2em;
  background: none;
  color: #fff;
  border: none;
}

.navbar .customize a:hover {
  opacity: 0.5;
}

.navbar .customize a:nth-child(1) {
  margin-right: 15px;
}

#center_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5em;
  color: #fff;
}