


/*
Body and headings centering
*/

body { 										
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  background-image: url("background.jpg");
  background-size: cover;        /* Scale the image to cover the entire page */
  background-repeat: no-repeat;  /* Prevent image from repeating */
  background-position: center;   /* Center the background image */
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

body a {
  display: block;
  text-align: center;
}
  


/* 
Classes
*/


.name { 								
  color: darkred;
  font-weight: bold;
  text-shadow: 2px 2px 2px gray;
  text-decoration: underline
}

.purple { 								
  color: purple;
  font-weight: bold;
}
.gold { 								
  color: goldenrod;
  font-style: italic
}
.teal { 								
  color: teal;
  font-style: italic
}


/* Tables 
alignment
border color
even row cell color
*/

table {  
  margin-left: auto;
  margin-right: auto;
}
  
table, th, td {
  border: 2px solid lightgray;
}


tr:nth-child(even) {
  background-color: #262626; /* dark gray */
}
tr:nth-child(odd) {
  background-color: black;
}



/* 
Links <a> and images <img>  
*/


a{
  font-weight: bold;
}

img {
  display: block;      /* make the image a block element */
  margin-left: auto;   /* automatic left margin */
  margin-right: auto;  /* automatic right margin */
}

a:hover{
  color: goldenrod;
  font-style: italic;
}
  
.about-me {
  border: 2px solid #333;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
}

