/*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://getcssscan.com/css-buttons-examples */

/*End of css file*/

