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

html {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000000;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  height: 250px;
  width: 300px;
  overflow: hidden;
  visibility: hidden;
}

/* ///////////////////// Right */

.left {
  position: absolute;
  height: 250px;
  width: 150px;
  background-color: var(--main-bg-color);
  z-index: 10;
}

#logo {
  width: 50%;
  margin: 10px 0px 5px 37px;
}

#title {
  font-size: 0.9rem;
  text-align: center;
  color: #000000;
  padding: 5px 20px;
  font-weight: 500;
}
#sub {
  font-size: 0.8rem;
  text-align: center;
  color: #000000;
  padding-top: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

#btn {
  margin: 25px 25px;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  width: 100px;
  background-color: #000000;
  color: #ffffff;
  font-weight: 500;
}

/* ///////////////////// Right */

.right {
  position: absolute;
  height: 250px;
  width: 150px;
  background-color: var(--main-bg-color);
  z-index: 10;
  left: 150px;
}
#carousel {
  height: 250px;
  width: 150px;
}

#carousel img {
  display: none;
  width: inherit;
  height: inherit;
  object-fit: cover;
  position: fixed;
}

#carousel img[class="active"] {
  display: block;
  animation-name: fadeIn;
  animation-duration: 1.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}
#nav {
  height: inherit;
  width: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: flex-end;
  /* // The text will be on its own row */
  flex-wrap: wrap;
}

#nav * {
  /* // All elements in the nav will be on top of the image */
  z-index: 10;
}

#desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
  /* // Ensures the text will be on its own row; not on the same row as the dots */
  width: 100%;
  padding-top: 0.5rem;
}

#dots {
  display: flex;
  justify-content: center;
  width: 100%;
}

#dots .dot {
  width: 10px;
  height: 10px;
  margin: 10px;
  background-color: grey;
  border-radius: 50%;
  cursor: pointer;
}

#dots .active {
  background-color: white;
}

/* Code below for the button */

.btn {
  height: 30px;
  width: 100px;
  background-color: rgb(0, 0, 0);
  position: fixed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  left: 10px;
  z-index: 100;
  color: white;
  box-shadow: none;
  border: none;
  font-size: 15px;
  border: 1px solid black;
}

.btn:hover {
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.8);
}

#pause {
  left: 10px;
  top: 260px;
}
