/* pcpartsstyle.css */
header {
    text-align: center;
    font-family: impact;
}
body {
    line-height: 1;
    height: 1000px;
    background-color: #010101;
}
.navbar {
    overflow: hidden;
    text-align: center;
    background-color: slategrey;
    width: 60%;
    margin: auto;
    border-radius: 10px;
}
.navbutton {
    float: left;
    overflow: hidden;
    display: inline-block;
}
.btnselect {
    background-color: inherit;
    font-family: inherit;
    color: white;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
}
a:link {
    text-decoration: none;
}
.btnselect:hover {
    background: #09a1f5;
}
.navbar a {
    color: white;
}
.search input {
    float: right;
    padding: 6px;
    border: none;
    margin: 8px;
    font-size: 17px;
    width: 200px;
}
.container {
    background-color: seashell;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    width: 60%;
    margin: auto;
    font-size: 30px;
}
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}
.tab button:hover {
    background-color: #ddd;
}
.tab button.active {
    background-color: #ccc;
}
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    background-color: white;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.contab {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
}
.explain {
    text-align: center;
    background-color: seashell;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    padding-bottom: 1px;
    padding-top: 1px;
}
