/*/////////////////*/
/*///// Layout ////*/
/*/////////////////*/

#pagecontainer {
    position: relative;
    left: 10%;
    width: 80%;
	height: 1050px;
	padding: 5px;
	border: 0px solid black;

}

#navcontainer {
    position: relative;
	top: 1%;
    left: 10%;
    width: 80%;
	padding: 5px;
	background: whitesmoke;
	border: 5px solid #003366;
	border-radius: 25px;
}

#contentcontainer {
    position: relative;
	top: 5%;
    /*left: 5%;*/
    width: 95%;
    height:  140%;
	padding: 5px;
	background: whitesmoke;
	border: 5px solid #003366;
	border-radius: 25px;
	font-family:Verdana;
	color:white;
	font-size:20px;
}
#cataloguecontainer {
    position: relative;
	top: 5%;
    /*left: 5%;*/
    width: 95%;
    height:  100%;
	padding: 5px;
	background: whitesmoke;
	border: 5px solid #003366;
	border-radius: 25px;
	font-family:Verdana;
	color:white;
	font-size:20px;
}

#navbtn {

    background-color: #003366;
    border: none;
    border-radius:25px;
    color: white;
    padding: 10px 25px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
  }

  #navbtn:hover{
    background-color: #003399;
  }

 /*//////////////////*/
/*////// Style /////*/
/*//////////////////*/

  body {
	background-color: lightseagreen;
}

a {
	font-family:verdana;
	color:white;
}

h1 {
    font-family: verdana;
    font-size:25px;
    color: black;
}

h2 {
    font-family: verdana;
    font-size: 20px;
    color: black;
    text-decoration: underline;
}

p {
    font-family: verdana;
    font-size:20px;
    color: black;
}
label {
    font-family: verdana;
    font-size:20px;
    color: black;
}


li {
    font-family: verdana;
    font-size:20px;
    color: black;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    text-align:left;
}

th, td {
    padding:10px;
}
th {
    background-color: rgba(0,153,153, 0.7);;
}
tr:nth-child(even) {
    background-color: #dddddd;
  }
tr:hover  {
    background-color: #dddddd;

}

/*//////////////////*/
/*///// Content ////*/
/*//////////////////*/

#cat-image {
    width:20%;
    max-height:20%;
    border: 1px solid black;
}

#cat-image:hover {
    border: 1px solid black;
}

.catalogue-container {
    display: grid;
    grid-gap: 1px 1px;
    grid-template-columns: auto auto auto;
    padding: 1%;
  }
  .catalogue-item {
    border: 0px solid rgba(0, 0, 0, 0.8);
    padding: 2%;
    font-size: 30%;
    text-align: center;
    color:black;
  }
  .content-grid{
    display: grid;
    grid-template-columns: 80% 20%;
    padding: 10px;
  }
  .content-item {
    border: 0px solid rgba(0, 0, 0, 0.8);
    padding: 20px;
    font-size: 30px;
    text-align: left;
  }