       
.pcloudvdo{
    width: 100%;
    height: 80vh;
}

.pcloudphoto{
    width: 100%;
    height: 800px;
}

.links_video{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}
.link_video{
    background: #0970b8;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 200px;
    width: 100%;
}

.link_video:hover{
    background: #085082;
}

.link_video::before{
    content: url('data:image/svg+xml; utf8, <svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 1 1%27></svg>');
    height: 100%;
    width: 100%;
}
.link_video a{
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    bottom: 0;
    position: absolute;   
    padding: 10px;
    text-align: center;
}

.link_video p{
    font-size: 1.3em;
    margin: 0;
}

.date_video{
    font-size: 1rem;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color:#000;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}