.background-image {
  background-image: url('./Images/background.jpg');
  background-size: cover;
  background-position: center;
  height: 600px;
  width: 100vw;
  position: absolute;
}

.navbarfixed {
  background-image: url('./Images/background.jpg');
  position: fixed;
  z-index: 3;
}

.card {
  background-color: white;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card-body {
  color: #4255A4 !important;
}

.auth-link {
  background-color: #FF9F67;
  padding: 6px 12px;
  margin-left: 5px;
  text-align: center;
  width: 80px;
  border-radius: 5px;
  transition: background-color 1s ease;
}

.auth-link:hover {
  background-color: rgb(174, 46, 174);
}

.join-for-free {
  background-color: #FF9F67;
  border: 0px;
  text-align: center;
  width: 160px;
  height: 40px;
  border-radius: 5px;
  margin-left: 5%;
  transition: background-color 0.5s ease;
}

.join-for-free:hover {
  background-color: rgb(174, 46, 174);
}

.join-for-free:not(:hover) {
  background-color: #FF9F67;
}

.fcourses {
  color: #4255A4;
  width: 450px;
  height: 50px;
  background-color: white;
  border: 1px solid lightgray;
  border-radius: 5px;
}

.fcourses:hover {
  background-color: #FF9F67;
  color: white;
}

.fsubjects {
  margin-top: 30px;
  color: #FF9F67;
  width: 300px;
  height: 60px;
  background-color: white;
  border: 1px solid #FF9F67;
  border-radius: 5px;
}

.fsubjects:hover {
  background-color: #FF9F67;
  color: white;
}

.background-color {
  margin-top: 50px;
  background-color: #4255A4;
  background-size: cover;
  background-position: center;
  width: 100vw;
}

.footer-social a {
  background: rgba(128, 136, 255, 0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin-right: 8px;
}

.footer-social {
  margin-top: 40px;
}

body {
  overflow-x: hidden;
}