/*Beginning of css file*/
/*styles.css*/

/*This changes the font, margins, and alignment*/
body {
        font-family: Verdana,sans-serif;
        text-align: center;
        margin-top: 50px;
    }

/*This changes the web interface background color*/
body {
    background-color: #f5f5f5;
}

/*This changes the text box to be large*/
.text-box {
  max-width: 1000px;
  min-height: 300px;
  margin: 40px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-align: left;
  font-size: 2rem;
  line-height: 2.2;
}

/*This changes the text box to be small*/
.small-box {
  max-width: 1050px;
  min-height: 150px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.8;
}

/*This is for changing the title to use a divider https://devsnap.me/css-dividers */
.hr {
    width: 100.5%;
    height: 6px;
    display: block;
    position: relative;
    margin: 8px 0 20px 0;
    left: -6px;
    padding: 0;
}

.hr::before,
.hr::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    left: 0;
    top: 0;
}

.hr::after {
    background: linear-gradient(
        to right,
        #62efab 5%,
        #F2EA7D 15%,
        #F2EA7D 25%,
        #FF8797 35%,
        #FF8797 45%,
        #e1a4f4 55%,
        #e1a4f4 65%,
        #82fff4 75%,
        #82fff4 85%,
        #62efab 95%
    );
    background-size: 100%;
}

/*Custom Buttons https://cssbuttons.io/ */
.bn5 {
  text-decoration: none;
  padding: 0.6em 2em;
  border: 2px solid #999;
  outline: none;
  color: rgb(0, 0, 0);
  background: #ffffff;
  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: #ffffff;
  left: 0;
  top: 0;
  border-radius: 10px;
}

/*End of css file*/

