* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

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) 17%, rgba(0, 0, 82, 1) 40%, rgba(0, 0, 0, 1) 100%);
}

.navbar{
   position: fixed;   
   top: 0; 
   width: 100%;      
   height: 40px;
   overflow: hidden;
   z-index: 1000; 
   padding-right: 120px;
}

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) 26%, rgba(0, 0, 82, 1) 33%, 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 {
    height: 400px;
    width: 700px;
    margin-top: 90px; 
    text-align: center;
    display: flex;
}

img{
  margin-top: 1px;
  margin-left: auto;
  display: flex;
  width: 100px;
  height: 100px; 
}


.text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family:URW Chancery L;
    font-style:cursive;
    font-weight: normal;
    font-stretch: extra-condensed;
    font-variant: small-caps;
}

h2 {  
    display: block;
    font-size: 24px;
    letter-spacing: 5px;
    backface-visibility: hidden;
    margin-bottom: 15px;
    color: linen;
    background-color: rgba(0, 0, 0, 0.4); 
}

h3 {
    display: block;
    font-size: 23px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4); 
    letter-spacing: 7.4px;
    margin-bottom: 15px;
}

.important{
  color: #C90000;
  font-size:26px;
}

strong{
 color:  #C90000;
 font-size:26px;
 text-decoration: underline 2px;
}


img, h2, h3 {
  animation: dropIn 1s ease-out forwards;
}

@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-500px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-white {
    background-color: #000;
    color: white;
    font-size: 19px;
    letter-spacing: 3px;
    border: 1.7px solid #7C7CA6;
    border-radius: 50px;
} 

.btn:hover {
  background: #7C7CA6;
  color: black;
  border: 1px solid white;
  transform: translateY(-6px);
  box-shadow: 0 30px 30px rgba(255, 255, 255, 0.9);
}

.btn:active {
    transform: translateY(-6px);
    box-shadow: 0 10px 10px rgba(255, 0, 0, 0.9);
}


.btn:link {
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 50px;
    transition: all .3s;
    position: relative;
}

