/* rhys.barrington-smith.com/style.css
   Cascading Style Sheet
   for
   rhys.barrington-smith.com
   v1.0
*/
/* Body settings*/
body {
    background-color: indigo;
}
/* Heading 1: Rhys Barrington-Smith */
h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: snow;
    background-color: indigo;
    padding: 20px;
    margin: 0;
    
}
/* Heading 3: Home, About, Projects */
h3 {
    font-family: Arial, Helvetica, sans-serif;
    background-color:snow;
    color:black;
}


/* The Navigation Bar*/
.navbar {
    overflow: hidden;
    background-color: indigo;
    
    width: 100%; /* Full width */
    color: snow;
    font-family: Arial, Helvetica, sans-serif;
    position: sticky;
    top: 0;
    

}
/* Links inside the navbar */
.navbar a {
  float: right;
  display: block;
  color: snow;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
/* Change background on mouse-over */
.navbar a:hover {
  background: snow;
  color: black;
}
/* Main content */
.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
}


/* */
.container {
  background-color: snow;
  max-width: 1200px; /* Adjust this value to your preferred content width */
  margin: 80px auto 0 auto;    /* Centers the container horizontally */
  padding: 20px 20px;   /* Adds internal spacing so content doesn't touch the edge on smaller screens */
  font-family: Arial, Helvetica, sans-serif;
}

