
body {
  margin: 0;
  position: relative;
  min-height: 100vh;
}

/* Rightmost 10% gradient overlay */
body::after {
  content: "";
  position: fixed;       /* stay on viewport */
  top: 0;
  right: 0;
  width: 20vw;           /* 10% of viewport width */
  height: 100vh;
  
  /* Gradient from white to greenish blue */
  background: linear-gradient(to left, #00c3ff, #ffffff); /* fallback for modern browsers */
  
  /* Cross-browser support */
  background: -webkit-linear-gradient(left, #ffffff, #00c3ff);
  background: -moz-linear-gradient(left, #ffffff, #00c3ff);
  background: -o-linear-gradient(left, #ffffff, #00c3ff);
  
  pointer-events: none;  /* so it doesn't block clicks */
  z-index: -9999;         /* on top */
}


body,html {
/* height: 100%; */
font-family: "Fivo Sans Regular";
}

.container-fluid {
padding:50px;
}


li{
    margin: 10px 0;
}

/*
ul {
  list-style: none;
}

ul li:before {
  content: '✓';
	
}*/

