
  @import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');
  * {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
  }
  body {
    height: 100%;
    width: 100%;
    color: rgb(0, 0, 0);
    font-family: "Salsa", cursive;
    font-size: 20px;
    background-color: rgba(154, 110, 195, 0.295);
  }
  header {
    /* border: 2px solid rgb(129, 213, 26); */
    position: relative;
    height: 5rem;
    width: 100%;
    display: flex;
    align-items: center;
    background: radial-gradient(rgba(122, 25, 212, 0.783), rgb(146, 76, 210));
  }
  .logo-title {
    /* border: 2px solid rgb(70, 150, 240); */
    display: inline-flex;
    align-items: center;
  }
  .logo {
    border: 2px solid black;
    height: 3.5rem;
    border-radius: 50%;
    margin: 5px;
  }
  #title {
    color: white;
    font-size: 35px;
  }
  .nav-ul {
    margin: auto;
  }
  .nav-ul li {
    /* border:2px solid rgb(47, 232, 216); */
    list-style-type: none;
    padding: 1rem;
    display: inline-block;
  }
  .nav > a {
    text-decoration: none;
    color: white;
    padding: 0.2rem;
  }
  .nav > a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  #Courses {
    text-decoration: underline;
    text-underline-offset: 5px;
    color: white;
  }
  .register {
    background-color: white;
    border-radius: 2rem;
    margin: 10px;
  }
  .register > a {
    text-decoration: none;
    font-family: "Salsa", cursive;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 0.8em;
  }
  .register > a:hover {
    opacity: 0.7;
  }
  .span-nav {
    display: flex;
    position: absolute;
    right: 0;
    margin: 2em;
  }
  .open-btn,
  .close-btn {
    display: none;
    cursor: pointer;
    font-size: 5vw;
  }
  @media screen and (max-width: 1060px) {
    .nav-ul {
      display: none;
    }
    .open-btn {
      display: block;
    }
    .nav-ul.open {
      width: 100%;
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 5rem;
      right: 0;
      text-align: center;
      background-color: rgba(148, 63, 228, 0.92);
    }
    .register {
      margin: auto;
    }
  }
.courses{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width:89vw;
    gap:15px;
    margin:auto;
    margin-bottom: 25px;
}
.heading{
    text-align: center;
    margin: 22px;
    font-size:xx-large;
}
.flex{
    /* border:2px solid red; */
    margin: 22px auto;
    height:20rem;
    width:20rem;
    background-color: rgba(152, 71, 227, 0.397);
    border:2px solid rgba(152, 71, 227, 0.201);
    border-radius: 20px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap:10px;
    padding:30px;
    cursor: pointer;
    /* transition: all 5s ease-in-out; */
}
.flex img{
    /* border:2px solid blue; */
    height: 5rem;
    width:5rem;
    border-radius:50%;
}
.flex h5{
    font-size: 1.5rem;
}
.flex a{
  text-decoration: none;
  color:black;
}
.flex:hover{
    transform: scale(1.05); 
    transition: all 0.75s ease-in;

}
footer{
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    /* border:2px solid yellow; */
    width:100%;
    gap:20px;
    background-color: rgba(151, 71, 227, 0.721);
  }
  .first{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:18px;
    /* border:2px solid red; */
    padding:25px;
    flex-wrap: wrap;
    height:20rem;
    width:20rem;
  }
  #footer-links{
    color:#551AB8;
  }
  @media screen and (max-width:695px){
    .first{
      padding:0;
      margin:0;
      height:14rem;
    }
  }
  @media only screen and (min-width: 980px) and (max-width: 1340px) {
    footer{
      gap:0px;
      flex-wrap: nowrap;
    }
  }