* {
  margin: 0px;
  padding: 0px;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500;
}

#main-view {
  margin: 0px auto;
  width: 60%;
}

.header-txt {
  margin-top: 15px;
  font-size: 3rem;
  text-align: center;
  color: #884ea0;
  margin-bottom: 25px;
}

.wrapper {
  text-align: center;
}

.batch {
  font-size: 4rem;
  border-bottom: 2px solid #e1e1e1;
  color: #ef7171;
  text-align: left;
  margin-bottom: 25px;
}

.batch::before {
  content: "#";
  position: absolute;
  margin-left: -45px;
  color: #ededed;
}

.topic {
  width: 200px;
  display: inline-block;
  border-radius: 3px;
  margin-right: 20px;
  margin-left: 20px;
  position: relative;
  margin-bottom: 30px;
  border-bottom: 1px dashed #f7f7f7;
}

.topic .cimg {
  width: 100%;
  height: 170px;
}

.topic .name {
  font-size: 2rem;
  color: #b3aeae;
  margin-top: 6px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #f7f7f7;
}

.topic .start-btn {
  margin-top: 5px;
  padding-top: 5px;
  padding-bottom: 10px;
  color: #2e86c1;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.topic .start-btn:hover {
  transform: scale(1.2, 1.2);
}

.link {
  margin: 20px 0px 30px 0px;
}

.link-hdr {
  font-size: 1.6rem;
  color: gray;
}

.link-hdr::after {
  content: "\2728";
  position: absolute;
  margin-left: 5px;
  margin-top: -8px;
}

.link-url {
  background-color: #34495e;
  padding: 7px 7px;
  margin-top: 5px;
  border-radius: 3px;
  color: #f8c471;
  position: relative;
  overflow: hidden;
}

.copy-url {
  border: none;
  background-color: transparent;
  outline: none;
  color: inherit;
  font-size: inherit;
  width: 100%;
}

.s-btn {
  position: absolute;
  top: 8px;
  right: 7px;
  font-size: 0.8rem;
  color: #fff;
  cursor: pointer;
  z-index: 1;
  background-color: inherit;
  padding: 7px;
  margin-top: -6px;
  margin-right: -7px;
}

.copied {
  position: absolute;
  font-size: 0.8rem;
  color: #fff;
  background-color: #34495e;
  z-index: -1;
  width: 60px;
  top: 1px;
  padding: 7px 0px;
  right: 1px;
  opacity: 1;
}

@keyframes copied-anim {
  0% {
    opacity: 1;
    z-index: 5;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

.s-btn a {
  text-decoration: none;
  color: #fff;
}

.or {
  text-align: center;
  font-size: 1.2rem;
  font-family: monospace !important;
  color: #9a8888;
}

.footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: gray;
}

/********************************************/
/* Copied from w3schools/how_to */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal Content */
.modal-content {
  margin: auto;
  padding: 20px;
  width: 60%;
  box-shadow: 0px 2px 17px -9px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  background-color: #f4d03f;
  position: relative;
}

/* The Close Button */
.close {
  color: #999999;
  float: right;
  font-size: 28px;
  position: absolute;
  top: -6px;
  right: 6px;
  transition: color 0.4s ease;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.language-text {
  background-color: #ebacac;
  border-radius: 4px;
  padding: 2px 10px;
}
/*****************************************************************/
