* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

 html, body {
  min-height: 100vh;
}

 body {
    line-height: 1.5;
    background: #E8E8EF;
    background: linear-gradient(0deg,rgba(232, 232, 239, 1) 0%, rgba(134, 134, 173, 1) 13%, rgba(91, 91, 144, 1) 20%, rgba(0, 0, 82, 1) 60%, rgba(0, 0, 0, 1) 100%);
    background-attachment: fixed;
}

.navbar{
   position: fixed;   
   top: 0; 
   width: 100%;      
   height: 40px;
   overflow: hidden;
   z-index: 1000; 
}

ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #E8E8EF;
  background: linear-gradient(90deg,rgba(232, 232, 239, 1) 7%, rgba(59, 59, 122, 1) 33%, rgba(0, 0, 82, 1) 40%, rgba(0, 0, 0, 1) 56%);
}

ul li{
  margin-right: 25px;
  float: left;
}

ul li a { 
  display: block;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-family: Courier, monospace;
}

.n1{
  font-size: 17px;
  color: black;
  text-shadow: 0.4px 0 0 black;
}

.n2{
 font-size: 17px;
 color: white;
}

.n1:hover {
  background-color: black;
  color: white;
} 

.n2:hover {
  background-color: white;
  color: black;
} 

.n1:active {
  background-color: #880808;
  color: white;
  box-shadow: 0 10px 10px rgba(255, 0, 0, 0.9);
}

.n2:active {
  background-color: #880808;
  color: white;
  box-shadow: 0 10px 10px rgba(255, 0, 0, 0.9);
}

#business-name{
  display: block;
  color: white;
  font-size: 20px;
  text-align: right;
  padding: 5px 14px;
}

.header {
  text-align: center;
  font-size: 18px;
  -webkit-text-stroke: 0.5px linen; 
  font-family:URW Chancery L;
  font-style:cursive;
  font-weight: normal;
  font-stretch: extra-condensed;
  font-variant: small-caps;
  margin-top: 60px;
  margin-bottom: 30px;
}
img{
  display: flex;
  margin: 0 auto;
  width: 130px;
  height: 150px;
  margin-bottom: 30px;
}

p{ 
  font-family: Courier, monospace;
  width: 700px;
  height: 90px;
  text-align: center;
  font-size:18px;
  background-color:rgba(0, 0, 0, 0.5);
  color:white;
  display: block;
  border:1.7px solid #C90000;
  letter-spacing: 3px;
  text-transform: none;
  font-weight: bold;
  margin: 0 auto;
  margin-bottom: 50px;
  border-radius: 50px;
}
a{
  color: #C90000;
}
a:hover{
  color: blue;
}

a:active{
  color: yellow;
}