/* dvanbeek stylesheet */
body {
    background-color: lightblue;
}


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

/* button style */
.tab button {
   background-color: inherit;
   float: left;
   border: 1px solid gray;
   border-radius: 7px 7px 0 0;
   outline: none;
   cursor: pointer;
   padding: 14px 16px;
   transition: 0.3s;
}

/* tab hover color */
.tab button:hover {
   background-color: #ddd;
}

/* tab active color */
.tab button.active {
   background-color: #ccc;
}

/* tab content style */
.tabcontent {
   display: none;
   padding: 6px 12px;
   border: 1px solid #ccc;
   border-top: none;
}
.one {
   background-color: rgba(234, 170, 0, 0.74);
}
.two {
   background-color: #e2d4ba;
}
.three {
   background-color: #7c8034;
}


