* {
  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;
}

/*.Screen{
  background-color: yellow;

}*/

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

}

.ProjectHeader {
  color: white;
  margin-top: 2vh;
  margin-left: 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;
  min-width: 100%;
}

.ProjectContent {
  display: flex;
  min-width: 100%;
  border-top: 1px solid rgb(173, 197, 255);
  padding-top: 20px;
  flex-wrap: wrap;
  column-gap: 80px;
  row-gap: 3vh;
  color: #728792;
  font-size: clamp(14px, 1.2vw, 18px);
}

.ProjectBox {
  flex: 0 0 calc(50% - 40px);
  /*This makes the size of each BOX the difference between 50% of the entire width (which is 100%) and the gap, so that the boxes don't overflow*/

  text-align: center;
  border: 3px solid rgb(173, 197, 255);
  background-color: 0B192C;
  border-radius: 30px;
  padding: 20px;
}

h5 {
  font-size: clamp(18px, 1.6vw, 24px);
  /*What clamp is doing: clamp(min, prefer, max) --> it keeps the text the size of prefer, but if it gets too small/big it keeps it within this range of acceptable sizes (14px-28px)*/
}

.Name {
  color: #ffffff;

}

.Skills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: white;
}

.SubSkill {
  border: 2px solid rgb(188, 242, 252);
  background-color: rgb(28, 28, 60);
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 10px;
}

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

.Demo p {
  display: inline-block;
  border: 2px solid #1A3636;
  background-color: #006A67;
  border-radius: 20px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: black;
}

.Demo p:hover {
  box-shadow: 0px 3px 2px rgb(57, 39, 63);
  background-color: #1A3636;
  border-color: #344C64;
  color: white;
  transition: background-color 0.25s ease-out;

}

@media (max-width: 800px) {

  /*When screen size becomes 800px, then it automatically becomes 1 column instead of 2 columns for Projects.*/
  .ProjectBox {
    flex: 0 0 100%;
  }
}

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