/* Layout 2 */


/* Containers */
/* Used to contain content and contrast "main" */
.contentContainer {
    background: rgb(255,255,255,0.95);
    padding: 20px;
    border-radius: 12px;
    max-width: 1020px;
    margin: 0 auto;
    min-height: 250px;
}

/* Temporary Container to show construction */
.constructionContentContainer {
    color: red;
    background: rgb(255,255,255,1);
    padding: 20px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 20px;
}


/* Logo Styles */
/* The logo in the footer */
.mainLogo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #EB4343;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin-bottom: 10px;
}

/* The logo in the footer */
.footerLogo {
    max-width: 120px;
    border-radius: 12px;
}


/* Other Global Styles */
/* Our tagline */
.tagline {
    font-style: italic;
    margin: 5px 0;
    color: #ffffff;
    font-size: 1rem;
}

/* All textboxes */
.textBox {
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: rgba(20, 20, 20, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* All textbox paragrapghs */
.textBox p {
    padding:5px;
}

/* Styling the links inside the textbox */
.textBox a {
  color: #a31212; 
  text-decoration: underline;
  font-style: italic;
  transition: color 0.3s ease;
}

/* Styling the links inside the textbox once hovered over.*/
.textBox a:hover {
  color: #2c0303;
  text-decoration: underline;
}
