/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


.rethink-sans-<uniquifier> {
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
  background-color:rgb(69, 71, 115);
  font-family: "Rethink Sans";
  
}

#name {
  font-weight: 800;
  font-style: italic;
  color: white;
  font-size: 7em;
  display: inline-block;   /* needed for the shadow to wrap the content */
  text-shadow: 
    1px 1px 0 black, 
    -1px 1px 0 black, 
    -1px -1px 0 black, 
    1px -1px 0 black; /* Shadows for outline effect */
}


#name:hover{
  cursor: pointer;
  color: black;
  text-shadow: 1px 1px 0 white, -1px 1px 0 white,-1px -1px 0 white,1px -1px 0 white;
}


.centered {
  height: 100vh;               /* full screen height */
  display: flex;
  justify-content: center;     /* center horizontally */
  align-items: center;         /* center vertically */
}

#name a {
  color: inherit;
  text-decoration: none;
}
