
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');


html{
  background-color: rgb(234,230,255);
  font-family: 'Open Sans', sans-serif;

}
header{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: rgb(234,230,255);
    height: 10%;
}

.logopic{
  width: 7.5%;
  height: auto;
}

.title{
  font-size: 500%;
  font-family: 'Open Sans', sans-serif;
}

.home_main{
    margin-top: 5%;
    margin-bottom: 10%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    

}



.class{
    display: flex;
    justify-content: center;
}



button{
  background-color: rgb(0,206,252);
  font-weight: bold;
  color:  white;
  font-family: 'Open Sans', sans-serif;
  border-style: solid;
  border-color: rgb(0,206,252);
  border-radius: 12px;
  
}

.yolo_login{
  margin-top: 10px;
  width: 80px;
  height: 50px;
}

.resourceButt{
  width: 200px;
  height:100px;
  font-size: 30px;
  
}

.login{
  margin-top: 10px;
  width: 80px;
  height: 30px;
  
}
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

img{
    width: 100%;
    height: auto;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  /*max-width: 700px;*/
  width: 100%;
  height: 40%;
  position: relative;
  margin: auto;
  margin-top: 5%;
}

/* Hide the images by default */
.mySlides {
  display: none;
  justify-content: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  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);
}





/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

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

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

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