/* Consolidated styles for MyStaticSite */

/* Common styles for all pages */
.hidden,
[hidden] {
    display: none !important;
}

.width500 {
    width: 100%;
    max-width: 500px;
}

a {
    text-decoration: none;
}

body {
    font-size: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif, "Segoe UI", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.sectionContainer {
    display: flex;
    justify-content: center;
}

.linkColor {
    color: black !important;
    transition: color 0.5s ease-in;
}

.linkColor:hover {
    color: maroon !important;
    transition: color 0.5s ease-in;
}

header {
    padding: 1.25rem 1rem 0 1rem;
    border-bottom: solid 1px gray;
    height: 4rem;
    line-height: 4rem;
}

.headerTitle {
    font-size: 2.25rem !important;
}

/* Common utility classes */
.roundedCorners {
    border-radius: 5px;
}

.clickable {
    cursor: pointer;
}

/* Index-specific styles */
@media screen and (max-width: 550px) {
    .centerHeader {
        text-align: center;
    }
}

.mainImageContainer {
    height: 500px;
}

.mainImage {
    margin: 2rem 0 2rem 0;
}

@media screen and (max-width: 425px) {
    .mainImageContainer {
        height: unset;
    }

    .mainImage {
        height: 60%;
        width: 80%;
    }
}

.mainText {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}

p {
    margin: 1rem 0 1rem 0;
}

footer {
    display: flex;
    justify-content: space-between;

    margin-top: 4rem;
    padding: 1.25rem 1rem 0 1rem;
    border-top: solid 1px gray;

    height: 5rem;
}

.footerLinkText {
    font-size: 0.9rem !important;
    font-weight: bold;
}

.connectionLinks {
    display: flex;
    justify-content: space-between;
    width: 3rem;
}

.credentialSvg {
    height: 1rem;
    width: 1rem;
}