* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

/* social media */
.social{
  width: 100%;
  height: 7vh;
  background: linear-gradient(to left, rgb(135, 43, 43), gold);
}
.socialrap{
  width: 80%;
  margin: auto;
}
.name{
  position: absolute;
}
.name h1{
  font-weight: bolder;
  color: red;
  font-size: 28px;
}
.app{
  float: right;
}
.app ul li{
  display: inline;
}
.app ul li a{
  color: gold;
  font-size: 23px;
  padding-left: 10px;
}

/* navigation bar */
.navigation {
  background: linear-gradient(to left, gold, rgb(135, 43, 43));
  background-repeat: no-repeat;
  background-size: cover;
}

.brand {
  font-size: 30px !important;
  font-weight: bolder;
  color: red !important;
  text-shadow: 2px 2px gold;
}

.menu {
  color: gold !important;
  text-shadow: 2px 2px red;
}

/* Banner */
.ban {
  background-image: url(./3.jpg);
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.banrap {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.banrap1 {
  padding-top: 180px;
  margin-left: 100px;
}

.wrapper {
  height: 100vh;
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}

.typing-demo {
  width: 79%;
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 25px;
  color: gold;
  text-shadow: 2px 2px red;
}

@keyframes typing {
  from {
    width: 0
  }
}

@keyframes blink {
  50% {
    border-color: transparent
  }
}

/* middle */
.mid {
  width: 100%;
  height: 50vh;
  background: linear-gradient(to top, orange, yellow);
}
.midrap {
  padding-top: 40px;
}
.box{
  width: 80%;
  padding-left: 200px;
}
.box img{
  width: 20%;
  height: 40vh;
}
/* footer */
.footer{
  width: 100%;
  height: 46vh;
  background: linear-gradient(to top, rgb(221, 58, 58), orange);
}
.footrap{
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: 80px;
}
.footrap{
  color: white;
  text-align: left;
  padding-top: 6vh;
}
.box10 img{
  height: 38vh;
  width: 80%;
  padding-top: 2px;
}
.box11 h1{
  color: black;
  font-size: 25px;
}
.box11 a{
  color: black;
  font-size: 25px;
  font-family: cursive;
}
.box12 h1{
  color: black;
  font-size: 25px;
}
.box12 p{
  color: black;
  font-size: 18px;
  font-family: cursive;
}