@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

body {

        background-image:url("../images/cutting-board.jpg");
        background-repeat:no-repeat;
        background-size:cover;
        background-position:top left;
        background-attachment:fixed;
        height: 100vh;
	    font-family:system-ui, sans sarif;
}


/* Center website */
.main {
  max-width: 1000px;
  margin: auto;
}

h1 {
  font-size: 50px;
  word-break: break-all;
}

a {text-decoration: none; color:#000000;}
	a:link {color:#000000;}
	a:visited {color:#000000;}
	a:hover {color:#2047D9;}
	a:active {color:#DD0104;}

.row {
  margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none; /* Hide columns by default */
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: white;
  padding: 10px;
box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
}

/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #ddd;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #666;
   color: white;
}
