@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-size: 18px;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  position: relative;
}

.main-block-left{
  padding: 24px;
  width: 42%;
  margin-left: 5%;
  margin-right: 3%;

  float: left;
  height: 100%;
}

.main-block-right{

  padding: 24px;
  width: 44%;
  margin-right: 3%;
  margin-left: 3%;


  float: right;
  height: 100%;
}

.heading {
  font-size: 40px;
  text-align: center;
  /* margin-bottom: 40px; */
}

.functions {
  margin-top: 40px;
}

.center{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-top: 100px;
  padding-bottom: 100px;
}


.shadow {
  box-shadow: 0px 1px 2px 0px rgb(60 64 67 / 30%), 0px 2px 6px 2px rgb(60 64 67 / 15%);
  border-radius: 8px;
}

.userName{
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.buttons{
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

input {
  width: 280px;
  padding-left: 5px;
  font-size: 16px;
  height: 37px;
}

.join-room-button {
  background-color: #394655;
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: 5px;
  margin: 0px 10px;
  border-width: 1px;
  border-color:  #394655;
  width: 130px;
}

.create-room-button{
  background-color: white;
  color: #394655;
  padding: 4px 8px;
  border-radius: 5px;

  border-width: 1px;
  border-color: #394655;

  margin: 0px 10px;
  width: 130px;
}

.join-meeting-text {
  margin-right: 10px;
  font-size: 18px;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);

  max-width: 1000px;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
display: none;
}

img {
  display:block;
  margin:auto;
  width:80%
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #717171;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px;
  user-select: none;
  text-decoration: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 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.4);
  color: white;
}

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

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

/* 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;
}

.dots {
  margin: 30px;
}

.subheading{
  text-align: center;
  color: grey;
}

.rated{
  color: #717171;
  height: 30px;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 792px) {

  .main-block-right{
    width: 100%;
    margin: 1%;
  }

  .main-block-left{
    width: 100%;
    margin: 1%;
  }

  img{
    width: 55%;
  }
}

@media only screen and (max-width: 375px) {

  .main-block-right{
    width: 100%;
    margin: 1%;
  }

  .main-block-left{
    width: 100%;
    margin: 1%;
  }

  img{
    width: 65%;
  }
}
