* {
  font-family: "Roboto", sans-serif;
}
body {
  height: 100vh;
}

.bg {
  margin-top: 10px;
  background-image: linear-gradient(to right, #9cc299, #99c096);
  height: 75vh;
  border-radius: 80px;
}

img {
  border-radius: 20px;
  margin-top: 0px;
  margin-left: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.txt-box {
  margin-top: 80px;
  padding-left: 10px;
}
.txt-box h1 {
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 60px;
  color: #053802;
}
h5 {
  font-size: 18px;
  font-weight: 300;
  color: #053802;
  margin-top: -6px;
}

h5 span {
  color: aliceblue;
  font-weight: 900;
}
.year {
  text-align: right;
  padding-right: 22px;
  margin-top: -6px;
  font-size: 14px;
  font-weight: 800;
  color: #053802;
}
.bc {
  padding-top: 30px;
  line-height: 38px;
  font-size: 26px;
  opacity: 60%;
  font-weight: 400;
}

.card1 {
  width: 50%;
  border: 1px solid white;
  margin-top: 40px;
  /* height: 230px; */
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.blue {
  color: #376694;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 28px;
}
.sm {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 300;
  color: #a8adb2;
}

.since {
  color: white;
  padding-left: 40px;
  /* padding-top: 200px; */
  font-size: 26px;
  color: #3e0612;
  margin-top: 40px;
  font-weight: 800;
  padding-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.marg-top {
  padding-top: 40px;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
