/*----------------------------------------------
  Body - whole website 
----------------------------------------------*/
body {
    margin: 0;
    background-image: url('./media/back.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    padding: 0;    
}
/*----------------------------------------------
  Container - Header, Title, Page
----------------------------------------------*/
.container {
    width: 960px;
    height: 1600px;
    margin: 0 auto;
    padding-top: 13px;
}
/*----------------------------------------------
  Header - Top Image
----------------------------------------------*/
.header {
    width: 960px;
    height: 333px;
    background-image: url('./media/headerlabel.png');
    background-color: rgba(255, 255, 255, 1.0);
}
/*----------------------------------------------
  Title - Top Title
----------------------------------------------*/
.title {
    width: 960px;
    height: 145px;
    background-image: url('./media/title.png');
    background-color: rgba(255, 255, 255, 1.0);
}
/*----------------------------------------------
  Page - 
----------------------------------------------*/
.page {
    width: 960px;
    height: 1430px;
    display: flex;
    gap: 0;
    margin-top: 10px;
}
/*----------------------------------------------
  Menu - Menu left on Page
----------------------------------------------*/
.menu {
    width: 200px;
    background-color: #dcebc0fd;
    padding: 20px;
    box-sizing: border-box;
}

.menu h2 {
  color: #76A2F8;
  margin-top: 0;
}

.menu ul {
  list-style-type: none;
  padding: 0;
}
.menu ul li {
  margin: 8px 10px;
  padding: 0px; 
  font-size: 20px;
  font-weight: 540;
}
.menu ul li {
  padding: 10px;
  border-bottom: 1px solid #ccc; /* horizontal line bottom */
}
.menu ul li:last-child {
  border-bottom: none; /* no line at last li*/
}
.menu ul li a {
  color: #76A2F8;
  text-decoration: none;
}
.menu ul li a:hover {
  color: rgba(218, 124, 124, 1.0);
}
/*----------------------------------------------
  Content - Text/Picture specific Info right on Page
----------------------------------------------*/
.content {
    width: 960px;
    padding-top: 20px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: rgba(255, 255, 255, 1.0);
    margin-left: 0px; /* to right for menu */
}

.content h1 {
  font-size: 28px;
  font-weight: 730;
  color: #6a6a8ad0;
}

.content p {
  font-size: 20px;
  font-weight: 200;
  line-height: 1.9;
}

.content p  b {
  font-size: 20px;
  font-weight: 550;
  line-height: 1.9;
}
/*----------------------------------------------
  ContentText - Much Text specific Info right on Page
----------------------------------------------*/
.contenttext {
    width: 960px;
    padding-top: 20px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: rgba(255, 255, 255, 1.0);
    margin-left: 0px; /* to right for menu */
}

.contenttext h1 {
  font-size: 28px;
  font-weight: 730;
  color: #6a6a8ad0;
}

.contenttext p {
  font-size: 20px;
  font-weight: 200;
  line-height: 1.1;
}

.contenttext p  b {
  font-size: 20px;
  font-weight: 550;
  line-height: 1.9;
}
