@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&family=Mulish&family=Source+Serif+Pro:wght@400;600;700&display=swap');
body {
    font-family: 'Crimson Text', serif;
    background-image: url("/images/HNMicrositeBackground_LailaAmer_Oct27.jpeg");
    font-size: 1.25rem;
}

b{
    font-weight: bolder;
}

ol {
    list-style-type:lower-alpha;
}

.content-container {
    padding: 20px;
}

.title-section {
    text-align: center;
    background-color: white;
}

.main-container {
    background-color: white;
    padding: 20px;
    box-shadow: 0px 1px 9px -2px rgba(0,0,0,0.53);
    -webkit-box-shadow: 0px 1px 9px -2px rgba(0,0,0,0.53);
    -moz-box-shadow: 0px 1px 9px -2px rgba(0,0,0,0.53);
}

.a-headline, .a-dek, .a-byline {
    width: 100%;
}

.a-headline {
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 4rem;
}

.a-dek {
    font-family: 'Mulish', sans-serif;
}

.a-byline {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.3rem;
}

.back-to-home {
    display: flex;
    place-content: center;
    place-items: center;
    height: 250px;
}

.back-to-home img {
    width: 350px;
    transition-property: width;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.back-to-home img:hover {
    width: 400px;
}

.main-page {
    width: 100%;
    display: flex;
    place-items: center;
    place-content: center;
    font-size: 2rem;
    padding: 0px 20px;
    background-color: white;
    font-family: 'Source Serif Pro', serif;
    -webkit-box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}

.img-float-left {
    float: left;
    margin: 0 20px 0 0;
}

.img-float-right {
    float: right;
    margin: 0 0 0 20px;
}

.img-float-center{
    width: 50%;
    height: 50%;
    padding: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.spacer {
    height: 50px
}

h1 {
    font-size: 2.6rem;
}

h2 {
    font-size: 2rem;
}

.main-page a{
    color: black;
}

.title-new-line {
    display: none;
}
@media only screen and (max-width: 404px) {
    .title-new-line {
        display: block;
    }
}

.content-center {
    text-align: center;
}

@media only screen and (max-width: 414px) {
    body {
        background-image: url("/images/HNMobileBackground_LailaAmer_Oct27.jpeg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .img-float-left {
        display: block;
        float: none;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .img-float-right {
        display: block;
        float: none;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .a-headline {
        font-size: 2.5rem;
    }

    .content-container {
        padding: 0;
    }
    .spacer {
        height: 20px;
    }
    h1 {
        margin: 0
    }
}