

    
p{
    margin-top: 100px;
    font-size: 25px;
    text-align: center;
    font-family: Arial;
    font-weight: bold;
    
}
    /*create different file*/
    .centered {
    display: block; /* Make the image a block-level element */
    margin-left: auto; /* Distribute left margin to the left side */
    margin-right: auto; /* Distribute right margin to the right side */
}


/*padding??*/
.header {
  position: sticky;
  top: 0;
  color: #ffffff; /*use????*/
  background: #ffffff;
  margin-top: -8px; /*needed to use units!!*/
  margin-right: -8px;
  margin-left: -8px;
  width: 103%;
  border-bottom: 1px solid rgb(172, 172, 172);

  

}

.section {
    font-family: Arial;
    font-weight: bold;
    font-size: 30px;
    color: rgb(77, 76, 76);
    padding: 35px 30px; /*fix the padding vs margin so its less jank lol*/
    margin-left: 5%;
    margin-top: 5%;
}

.rectangle {
padding: 30px;
font-family: Arial;
font-size: 80px;
font-weight: bold;
  height: 75px;
  width: 90%;
  color:white;
  background-color: rgb(255, 255, 255);
  border-radius:15px;
  text-align:center;
  justify-content:center;
  align-items: center;
  display: block; /* Make the image a block-level element */
    margin-left: auto; /* Distribute left margin to the left side */
    margin-right: auto; /* Distribute right margin to the right side */
    margin-bottom: 1.5em;
    margin-top: 0px;
    color: rgb(42, 42, 42) /* how do we know this is referring to text?*/
}



.banner{
    /*width: 100%;  Make the video responsive */
    /*height: 100*/
    display: flex; /* Make the image a block-level element */
    width: 103%;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 50px;
    height: auto;
    border: 1px solid rgb(172, 172, 172);


}


.header-link{
    display: inline-flexbox; /*dif between inline flex and inline flexbox???*/
    padding: 40px;
    color: rgb(70, 70, 70);
    text-decoration: none;
    font-family: Arial;
    font-weight: bold;
    font-size: 20px;
}

/*add in font, font size, etc for all lables*/




/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content { /* combine the content class with the text class*/

margin-top: 10px; /*why can't do padding like this in collapsible?*/
  background-color:rgb(233, 234, 234);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out; /*what does this do*/ 
  width: 90%;
  margin-left: 5%;
 
  
}

.collapsible {
  background-color: #ffffff;
  color: rgb(77, 76, 76);
  font-weight: bold;
  cursor: pointer;
  padding: 25px;
  width: 90%;
  text-align: left;
  border: 1px solid rgb(172, 172, 172);
  outline: none;
  margin-left: 5%;
  margin-right: auto;
  font-size: 20px;
  border-radius: 10px;

}

.active, .collapsible:hover {
  background-color: #cfcfcf;
}



.text {
    font-family: Arial;
    font-weight: bold;
    color: rgb(59, 59, 59);
    font-size: 18px;
    margin-top: 30px; /*figure out what's wrong so don't have to brute force*/
    margin-bottom: 30px;
    padding: 0px 20px;
    line-height: 30px;
    
}

.title {
    font-family: 'Brush Script MT', cursive;
    font-size: 80px;
    display: block;
    padding: 50px;
    text-align: center;
    color: rgb(70, 70, 70);

}

.image {
padding: 30px;
font-family: Arial;
font-size: 80px;
font-weight: bold;
  height: 75px;
  width: 20%;
  color:white;
  background-color: rgb(255, 255, 255);
  border-radius:15px;
  text-align:center;
  justify-content:center;
  align-items: center;
  display: block; /* Make the image a block-level element */
    margin-left: auto; /* Distribute left margin to the left side */
    margin-right: auto; /* Distribute right margin to the right side */
    margin-bottom: 2%;
    margin-top: 5%;
    color: rgb(42, 42, 42) /* how do we know this is referring to text?*/
}

hr.solid {
  border-top: 3px solid #d7d6d6;
  width: 80%
}


