* {
    margin: 0;
    padding: 0;
    font-family: 'Judson', serif;
    box-sizing: border-box;
}

html {
    height: 100%;
}
body {
    background-color: #FCFCFC;
    font-family: 'Judson', serif;
    height: 100%;
    /* display height and width: ; */
    background-size: cover; 
}
header {
    padding: 1rem 0;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    top: 0;
    
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 40px;
    position: relative;
    top: 0em;
    left: -10px;
}

nav ul li a {
    font-size: 22px;
    position: relative;
    color: #2c2fcf;
}

/* header starts here  */

.header {
    height: 200px;
    width: 1400px;
    padding: 30px;
    font-size: 40px;
    text-align: center;
    border-radius: 10px;
    margin: 30px;
    margin-top: -10px;
    margin-top: 30px;
    margin-left: 30px;    
  }
  .header h3 {
    color: #FCFCFC;
    margin-top: 40px;

  }
.description {
    color: #2c2fcf;
    font-size: 25px;
    font-weight: 300;
    margin-left: 30px;
}
.note {
  color: #2A2ECD;
  font-size: 20px;
  font-weight: 150;
  margin-left: 30px;
}
/* header ends here  */
.row {
    display: flex;
    flex-direction: row;
}
/* left column either text or img  */
.leftcolumn {
    float: inline-start;
    width: 50%;
  }

/* left column ends here  */
  
  /* Right column  either text or img*/
  .rightcolumn {
    float: right;
    width: 50%;
  }
  .leftcolumn .card {
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-size: 17px;
    color: #FEF7E4;
    line-height: 25px;
    font-weight: 10;
    margin: 30px;
    height: 500px;
    width: 600px;
  }
 .leftcolumn .card h2 {
    margin-bottom: 20px;
    color: #FCFCFC;
    display: flex;
    text-align: center;
    justify-content: center;
  }
  .rightcolumn .card-text h2 {
    color: #2c2fcf;
    font-size: 30px;
    margin-bottom: 10px;
  }
  .card-text p {
    color: #2c2fcf;
    font-size: 20px;
  }
.rightcolumn .card-text {
    width: 700px;
    margin-left: -70px;
    margin-top: 40px;
}
/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  
  .mySlides {
   align-items: center !important;

  }
  .mySlides img {
    border-radius: 10px !important;
    max-height: 400px;
  }
 
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #2c2fcf;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 10px;
    user-select: none;
    background-color: #FCFCFC;
  }
  
  .next {
    right: 0;
  }
 .prev {
    left: 0;
 }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: #2c2fcf;
    color: #FCFCFC;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
.btn {
    display: block;
    width: fit-content;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none !important;
    text-decoration-line: none !important;
    font-size: 25px;
    transition: background 0.5s;
    background-color: transparent;
    margin-top: 40px;
}

.copyright {
    width: 100%;
    padding: 25px 0;
    background-color: #2A2ECD;
    text-align: center;
    font-weight: 300;
    margin-top: 20px;
    color: #FCFCFC;
}
  
 