body {
    font-family: sans-serif;
    margin: 0;
    cursor: default;
    text-align: left;
    background-color: white;
    color: black;
    font-weight: bold;
}

::-moz-selection { 
  color: yellow;
  background: red;
}

::selection {
  color: yellow;
  background: red;
}

a{
    color: blue;
    text-decoration: underline 5px;
    font-size: larger;
}

.dropbtn {
  background-color: black;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  float: right;
}

.dropbtn:hover {
  transition: 0.5s;
  border: 5px solid grey;
}

.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-top: 56px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: black;}

#navbar{
  display: block;
  background-color: white;
  width: 100%;
  box-shadow: 5px 5px 5px black;
  position: fixed;
  transition: 0.5s;
  margin-top:-8px ;
  z-index: 4;
}
.borderId{
  border: 3px solid black;
  padding: 5px;
}

.borderId:hover{
  transition: 0.5s;
  background-color: grey;
  font-size: 2rem;
  padding: 5px;
  box-shadow: 5px 5px 5px;
}

.borderId a:hover{
  text-decoration: underline 3px;

}

.borderId p{
display: inline;
}

html {
  scroll-behavior: smooth;
}

span{
  color: red;
}