@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;700&display=swap');

@font-face {
  font-family: Socials;
  src: url("./socials.ttf");
}

body{
    background-color: #0C0052;   
}

body:not(.centered) {
    /*centering*/
    margin: auto;
    max-width: 1100px
}

/* text signifiers */
u {
    color: #0C0052;
    background-color: white;
    text-decoration: none;
    padding: 0 15px;
}

b {
    font-weight: 500;
}

.social {
    font-family: Socials;
    padding: 10px;
    margin: 3px auto;
    line-height: 40px;
}

/* display */

img {
    margin: 0;
    padding: 0;
}

.nopad {
    padding: 0;
    width: auto;
}

.nopad img {
    width: 100%;
}

.displaygrid {
    max-width: 900px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
}

/* body text styles */

body h1 {
    color: white;
    text-align: center;
    font-family: Jost, Arial, sans-serif;
    font-weight: 700;
    font-size: 72px;
    margin: 30px auto;
    width: 100%;
    line-height: 69px;
}

body h2 {
    color: white;
    text-align: center;
    font-family: Jost, Arial, sans-serif;
    font-weight: 300;
    font-size: 50px;
    margin: 30px auto;
    width: 100%;
    line-height: 48px;
}

body p {
    color: white;
    text-align: center;
    font-family: Jost, Arial, sans-serif;
    font-weight: 300;
    font-size: 36px;
    margin: 3px auto;
    width: 100%;
    line-height: 36px;
}

body a {
    color: white;
    text-decoration: none;
    /*border-bottom: 2px solid white;*/
    padding: 0 15px;
}

body a:hover {
    color: #0C0052;
    text-decoration: none;
    background-color: white;
}

/* organization */

hr {
    margin: 20px 0;
    border-width: 2px;
    border-color: white;
    border-style: solid
}

/* div classifiers */
.float-container {
    display: flex;
    margin-top: -20px;
}

.float {
    width: 50%;
    float: left;
}

.highlight {
    background-color: white;
    padding: 10px;
    margin: 10px 40px;
}

.highlight p,
.highlight a {
    color: #0C0052;
}

.highlight a:hover {
    color: white;
    background-color: #0C0052;
}