@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}
body{font-family: 'roboto',sans-serif;
background:#badce8}

a{text-decoration: none;}

body{
      background:#aac4ce;
}


.navbar{
   display: flex;   
   justify-content: space-between;
   padding:6px;
   background-color: #1f231b;
   
}
.logo_tittle, .navbar ul li a{color:rgb(231, 136, 219)}

.navbar ul{
      display: flex;
      align-items: center;
      list-style-type: none;
}
.navbar ul li a {
      padding: 14px;
      margin: 0 6px;
}
.navbar ul li a:hover{
      color:#1d1d1d;
      background-color: #ffb42a;
      border-radius: 4px;
   }

 html {
        font-family:"roboto" , sans-serif;
      }

      body {
        margin: 0;
      }

      header {
        background: rgb(110, 90, 110);
        height: 100px;
      }

      h1 {
        text-align: left;
        color: rgb(136, 101, 233);
        line-height: 50px;
      }
      .button {
        background-color: #1c87c9;
        border: none;
        color: white;
        padding: 20px 34px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 20px;
        margin: 4px 2px;
        cursor: pointer;
        }
   
  



        * {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: baseline;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(232, 13, 13);
  background-color: rgb(106, 97, 81);
  font-weight: bold;
  font-size: 30px;
  transition: margin-right 2s, color 1s;;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #ed1399;
  font-size: 25px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
 
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f40a0a;
  font-size: 25px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: rgb(249, 247, 247);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #644949;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}