@import url("font.css");

.background {
  background-color: rgb(13, 80, 205);
}

.whitetext {
  color: rgb(255, 255, 255);
}

body {
  background-image: url("../res/image/pxfuel.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cornerbox {
  border-radius: 25px;
  background: #9cc7f015;
  padding: 0;
  border: 1px solid #e7e8e951;
}

.cornerboxtxt {
  color: rgb(214, 216, 218);
  font-family: "byekan" !important;
  text-align: right;
  line-height: 2;
}

ul {
  direction: rtl;
  color: aliceblue;
}

.midtitle {
  color: rgb(103, 249, 249);
  font-family: "byekan" !important;
  text-align: right;
}

.midbody {
  color: rgb(214, 214, 214);
}

.header {
  position: static;
}

.navbar {
  padding: 5px !important;
}

.card-tile {
  width: 300px;
  height: 630px;
  background-color: aliceblue;
  margin: 12px;
}

.card-text {
  text-align: right;
  font-size: 15px;
}

.card-title {
  text-align: right;
  font-size: 20px;
}

.footer {
  position: absolute;
  bottom: 0;
  margin-bottom: 20px;
}

.imgcorner {
  border-radius: 15%;
}

.sharh {
  color: #0000008b;
  font-size: 13px;
  text-align: right;
}

.footer-p {
  background-color: black;
  height: 200px;
  color: aliceblue;
  text-align: right;
}

.marq {
  color: aliceblue;
  text-align: right;
}

@keyframes fadeBlink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.blinking-cursor {
  font-weight: bold;
  font-size: 20px;
  animation: fadeBlink 1s infinite;
}