@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap");
.left_aligned {
  text-align: left;
}
.right_aligned {
  text-align: right;
}

.center_aligned {
  text-align: center;
}
section {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 10rem;
  min-height: 0.1vh;
}
.hidden {
  opacity: 0;
  filter: blur(5px);
  transition: all 1s;
}
.show {
  opacity: 1;
  filter: blur(0);
}

.bn5 {
  position: relative;
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.bn5:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowingbn5 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}
@keyframes glowingbn5 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.bn5:active {
  color: #000;
}

.bn5:active:after {
  background: transparent;
}

.bn5:hover:before {
  opacity: 1;
}
.bn5:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #191919;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.scroll .mouse {
  top: 50%;
}
.mouse {
  position: absolute;
  width: 22px;
  height: 42px;
  bottom: 50%;
  top: 80%;
  left: 50%;
  margin-left: -12px;
  border-radius: 15px;
  border: 2px solid var(--col-darkest);
  animation: intro 1s;
}
.scroll {
  display: block;
  width: 3px;
  height: 3px;
  margin: 6px auto;
  border-radius: 4px;
  background: var(--col-darkest);
  animation: finger 1s infinite;
}
@keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.codeimg {
  width: 50rem;
  opacity: 0.2;
  display: flex;
  position: fixed;
  top: 50%;
  left: 20%;
}
.ry {
  margin-top: 40px;
  font-size: 5rem;
}
.yr {
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
  line-height: 1em;
  font-size: 2.5rem;
  margin: -20px;
}

.b {
  color: var(--col-primary);
  font-weight: bold;
  font-size: 4rem;
}
.u {
  color: var(--col-primary);
  font-family: "Roboto Mono", monospace;
  font-size: 1.5rem;
  font-weight: 500;
}

.login {
  justify-content: center;
  align-items: center;
}

input[type="email"] {
  width: 70%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

input[type="submit"] {
  border-radius: 10%;
  color: white;
  background-color: black;
}
input[type="email"]:hover {
  background-color: lightblue;
  transition: all 0.2s;
}

input[type="password"] {
  width: 70%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}
input[type="password"]:hover {
  background-color: lightblue;
  transition: all 0.2s;
}

#submitbtn:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: all 0.2s;
}

.cardd {
  border: 1px solid black;
  align-items: center;
  justify-content: center;
  width: 70%;
  align-content: center;
  position: absolute;
  top: 20%;
  left: 20%;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.signup {
  font-family: "Roboto Mono", monospace;
  text-align: center;
}
.dropbtn {
  background-color: #4caf50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
}

.dropdown {
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: all 0.3s;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: all 0.3s;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
  transition: all 0.3s;
}
.dropdown .signout {
  transition: all 0.1s;
}

.dropdown .signout:hover {
  background-color: #ff4d4d;
}

li {
  list-style: none;
}

.learnmre {
  padding: 10px;
  border-radius: 20px;
  margin: 10px;
  transition: all 200ms ease-in-out;
}

.learnmre:hover {
  cursor: pointer;
  transform: scale(1.075);
  background-color: pink;
}
.h {
  font-size: 5rem;
}

a:hover {
  cursor: pointer;
}
