* {box-sizing: border-box}
/* Style the tab */
div.tab {
    float: left;
    border: 1px solid #ccc;
    background-color: white;
    width: 260px;
    height: 375px;
}

/* Style the divs inside the tab */
div.tab div {
    display: block;
    background-color: inherit;
    color: black;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
}

div.tab img {
  max-width: 240px;
  display: block;
  margin: 0;
}
/* Change background color of divs on hover */
div.tab div:hover {
    background-color: #ddd;
}

/* Create an active/current "tab div" class */
div.tab div.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    float: left;
    padding: 0px 12px;
    border: 1px solid #ccc;
    width: 70%;
    border-left: none;
    height: 375px;
}