*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body{
  height: 100%; /*Height of the body is the entire height of webpage*/
  margin: 0%;
  background-color: rgb(0, 0, 0);
  min-height: 100vh;
}

.navbar-dark .navbar-brand { /*Need to mention navbar-dark first to OVERRIDE the default setting it has*/
  /*background-color: green;*/
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 100;
  color: rgb(173, 197, 255);
  padding-right: 6%;
}

.navbar-dark .navbar-brand:hover { /*Need to mention navbar-dark first to OVERRIDE the default setting it has*/
  color: white; /*Color of Name at top left changes to white when hovering*/
}

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

p{
  text-decoration: none;
  color: inherit;
}

.navbar{
  background-color: rgb(0, 0, 0);
}

.navbar:hover{
  background-color: rgb(84, 97, 126);
  transition: background-color 0.25s ease-out;
}

/*.navbar-nav{
  background-color: lightcoral;
}*/

.navbar-dark .navbar-nav .nav-link{ /*Need to mention navbar-dark first to OVERRIDE the default setting it has*/
  color:white;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.navbar-dark .navbar-nav .nav-link:hover{ /*Need to mention navbar-dark first to OVERRIDE the default setting it has*/
  color: rgb(173, 197, 255);
  transition: color 0.25s ease-out;
}

nav .container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}

.container{
  min-height: 88%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.ContactHeader{
  min-width: 100%;
  display: flex;
  justify-content: center;
  color: white;
  margin-top: 2vh;
  margin-bottom: 2vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 200;
  
}

.ContactContent{
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex: 0 1 200px;
  gap: 20px;

  justify-content:center;
  color: white;
  border-top: 1px solid rgb(173, 197, 255);
  /*border: 3px solid rgb(173, 197, 255);*/
  /*background-color: rgb(84, 97, 126);*/
  /*border-radius: 30px;*/
  padding-top: 30px;
  text-align: justify;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.ContactContent a{
  color: rgb(173, 197, 255);
  font-weight: 700;
  
}

.ContactContent a:hover{
  color: rgb(84, 97, 126);
}

.ContactContent .email{
  border: 3px double rgb(186, 232, 255);
  border-radius: 30px;
  background-color: rgb(14, 0, 33);
  padding: 2vh;
  min-width: 16em;
  text-align: center;
}

.icon{
  margin-top: 3px;
  margin-bottom: -8px;
  font-size: 60px;
}

.ContactContent .linkedin{
  border: 3px double rgb(186, 232, 255);
  border-radius: 30px;
  background-color: rgb(14, 0, 33);
  padding: 2vh;
  min-width: 16em;
  text-align: center;
}

.ContactContent .github{
  border: 3px double rgb(186, 232, 255);
  border-radius: 30px;
  background-color: rgb(14, 0, 33);
  padding: 2vh;
  min-width: 16em;
  text-align: center;
}

.ContactContent .email:hover, .ContactContent .github:hover, .ContactContent .linkedin:hover{
  background-color:rgb(28, 28, 60);
  transition: background-color 0.5s;
}


footer .Copyright{
  display: flex;
  color: white;
  justify-content: center;
}
