body {
    background-image: url(STUCCO.bmp);
    background-repeat: repeat;
  
    font-family: "Courier New", Courier, monospace;
  
    
  }
  
  #wrapper {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #603;
  }
  
  header {
    background-color: #914;
    color: #dc8d8c;
    text-align: center;
    padding: 8px;
  }
  
  header a:visited {
    color: #e085e4;
  }
  
  header a {
    text-decoration: none;
    color: #96ec30;
  }
  
  a:visited {
    color: rgb(0, 10, 119);
  }
  
  a {
    text-decoration: none;
    color: rgb(51, 54, 136);
  }
  
  nav {
    font-weight: bold;
    font-size: 1.25em;
    background-color: #956eea;
    text-align: center;
    padding: 0px;
    border-bottom: 3px solid #7d0546;
    border-top: 2px solid #bd354f;
  }
  
  nav a {
    text-decoration: none;
    padding: 4px;
    display: block;
    color: #b99805;
    width: 200px;
  }
  
  nav a:hover {
    color: #940;
  }
  
  nav ul {
    /* get rid of the bullets */
    margin: 0px;
  }
  
  nav li {
    display: inline-block;
    vertical-align: middle;
    /* set a border color border width: ;*/
    /* padding: 10px 0;
      border: 3px solid green;
      text-align: center; */
  }
  
  main {
    background-color: #1f7b95;
    color: #000000;
    padding: 2em;
  }
  
  footer {
    font-style: italic;
    text-align: center;
    background-color: #444;
    color: #fff;
    padding: 0.5em;
  }
  
  img {
    float: right;
  }
  
  table {
    border: 1px solid black;
    border-collapse: collapse;
    width: 50%;
  }
  
  th,
  td {
    margin: 0px;
    /* set the css here */
  }
  
  tr:nth-child(even) {
    background-color: #90979e;
  }
  
  .circle-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid black;
    /* display: inline-block; */
    object-fit: cover;
    float: right;
  }
  
  .small-caps {
    font-variant-caps: small-caps;
  }
  