/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: lightpink;
  color: black;
  font-family: Verdana;
}

* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 20%;
  padding: 0px;
  position: fixed;
}


.column2 {
	float: left;
    width:50%;
    padding: 40px;
    border: 2px solid black;
    margin-left: 25%;
}

.column3 {
  float: left;
  width: 25%;
  padding: 0px;
  position: fixed;
  margin-left:73%;
}
    

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

html {
  padding: 40px;
  background-color: #ffe0fe;
}

body {

  font: 1.2em / 1.5 system-ui;
  padding: 40px;
  background-color: #ffe0fe;
  margin: 0 auto;
  font-family: Verdana;
}

table, th, td {
  border: 0px dotted lightblue;
  padding: 20px;
}

table.portfolio, th.portfolio, td.portfolio {
  border: 2px solid black;
  padding: 20px;
}

table.menu, td.menu {
  border: 0px dotted black;
  padding: 0px;
}

button {
  background-color: white;
  border: 2px solid;
  color: black;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 22px;
  cursor: pointer;
  width: 250px;
  height: 40px;
  
}

.header {
  background-color: #ffe0fe;
  border: 0px;
  padding: 0px 10px;
  text-align: center;
  font-size: 22px;
  cursor: default;
  width: 250px;
  height: 45px;
  font-weight: bold;
}

.button{
  text-decoration: none;
  }

  


