body{
    background: #16c900ad; /* Old browsers */
    background: -moz-linear-gradient(-90deg, cyan 0%, #00ff2b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-90deg, cyan 0%,#00ff2b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(-90deg, cyan 0%,#00ff2b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='cyan', endColorstr='00ff2b',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    background-image: linear-gradient(-90deg, cyan, #00ff2b);
    min-height: 100vh;
    min-width: 390px;
}

#divContact a{
    color: black;
    font-weight: bolder;
}

/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
  box-shadow: 0 0 1px 1px #bbb, inset 0 0 7px rgba(0,0,0,0.3);
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #0ae;
  background-image: -webkit-gradient(linear, 0 0, 0 100%,
                    color-stop(.5, rgba(255, 255, 255, .2)),
                    color-stop(.5, transparent), to(transparent));
  box-shadow: inset 0 0 1px 1px #0072ff;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  width: 15px;
  background: #555; 
}