@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
*{
    font-family: 'Quicksand', sans-serif;
}
body {
    background-image: url("/images/bwbrick.png");
    margin: 0;
}
.button {
    background-color: #0064be;
    border: none;
    color: white;
    padding: 10px;
    padding-bottom: 8px;
    padding-top: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 5px;
}
.header {
    width: 100%; 
    margin: 0;
    height: auto; 
    display: inline-block;
}
.footer {
    padding-top: -5px;
    padding-bottom: -5px;
    background: #333;
    color:white;
    width: 100%;
    position:fixed; 
    bottom:0; 
}
.paragraph{
    position: relative;
    left: 50%;
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    width: 80%;
    max-width: 800px;
    padding: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
}
.productcontainer{
    position: relative;
    left: 50%;
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    display: flex;
    flex-wrap: wrap;
    width:80%;
    padding: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
}
.product{
    width:20%;
    min-width: 200px;
    margin: auto;
    padding: 20px;
    outline: 3px solid #0064be;
    outline-offset: -10px;
}
.productpageheading{
    width:100%;
    text-decoration: none;
    position: relative;
    text-align: center;
    background-color: #0064be;
    color: white;
    border-radius: 10px;
    padding: 30px;
    padding-top: 0px;
    padding-bottom: 4px;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 700;
}
h2{
    margin-top: 15px;
    padding: 5px;
    margin-bottom: 15px;
    text-align: center;
    background-color: white;
    color: #0064be;
    border-style: solid;
    border-radius: 10px;
    border-color: #0064be;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-top: -5px;
    background-color: #333;
}
li {
    float: left;
}
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-decoration: none;
}
li a:hover {
    background-color: #3d3d3d;
    text-decoration: underline;
}
.active {
    background-color: #686868;
    pointer-events:none;
}
/*Checkbox*/
.container {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-left: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: solid #333;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: rgb(80, 80, 80);
}
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #0064be;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}