.londrina-shadow-regular {
    font-family: "Londrina Shadow", sans-serif;
    font-weight: 400;
    font-style: normal;
  }  

  .nixie-one-regular {
    font-family: "Nixie One", system-ui;
    font-weight: 400;
    font-style: normal;
  }  

header {
    background-color: green;
    font-family: Sigmar One;
    padding: 30px;
    position: relative;
    background-image: url(../img/joab006.jpg);
    background-size: cover;
}

body {
    background-color: #aac5c2;
}

.jaclogo {
    position:relative;
    bottom: 30px;
}

h1 {
    position: relative;
    color:#365000;
    left: 27px;
    font-family: londrina shadow;
    font-size: 75px;
    bottom: 35px;
}

.year {
position: relative;
font-family: nixie one;
font-size: 20px;
left: 83px;
top: 62px;
color: white;
}

h2 {
    position: relative;
    font-weight: bolder;
    font-size: 30px;
    left: 84px;
    margin-bottom: 14px;
}

h3 {
    position: relative;
    font-weight: bold;
}

h4 {
    position: relative;
    font-weight: bold;
}

p {
    position: relative;
}

img {
    width: 100%;
    position: relative;
}

.what {
 margin: 1re 1rem 5rem 1rem;
   padding: 1rem;
   background-color: white;
   border: 5px solid rgb(13, 89, 40);
   display: block;
   margin-bottom: 20px;
}

.when {
    margin: 1re 1rem 5rem 1rem;
    padding: 1rem;
    background-color: white;
    border: 5px solid black;
    display: block;
    margin-bottom: 20px;
}

.where {
    margin: 1re 1rem 5rem 1rem;
    padding: 1rem;
    background-color: white;
    border: 5px solid black;
    display: block;
    margin-bottom: 20px;
}

.install {
    margin: 1re 1rem 5rem 1rem;
    padding: 1rem;
    background-color: white;
    border: 5px solid black;
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.why {
    margin: 1re 1rem 5rem 1rem;
    padding: 1rem;
    background-color: white;
    border: 5px solid black;
    display: block;
    margin-bottom: 20px;
}

.alltext {
    margin: 20px;
    font-size: 100%;
    font-family: kanit;
    font-weight: thin;
}

.intro {
    margin-bottom: 20px;
    font-family: Poller One;
}

.apps {
    display: flex;
    position: relative;
    left: 41px;
    width: 10.5rem;
}

.install-title {
    position: relative;
    left: 52px;
}

.science-title {
    position:relative;
    left: 32px;
}

.what-title {
    position: relative;
    left: 82px;
}

.when-title {
    position:relative;
    left: 79px;
}

.where-title {
    position: relative;
    left: 75px;
}

.date {
    position: relative;
    left: 65px;
    padding-top: 10px;
}

.info-text {
    position: relative;
    padding-top: 10px;
}

.finalwords {
    position: relative;
    left: 4px;
}

footer {
    background-color: #aac5c2;
    padding: 25px;
    color: white;
    position: relative;
}


@media screen and (min-width: 60rem) {

    section {
        width: 60rem; 
        /* use the width you prefer for the design, but no wider than the min-width set above */

        margin: 3rem auto;
        /* adjust vertical spacing with the first value, 
        center the section tag with auto left/right margins */
    }

    .flex-container {
        display: flex;  
        /* creates two columns */

        column-gap: 1rem;
        /* space between the columns */
    }

    .flex-container picture, 
    .flex-container > p, 
    .flex-container > div {
        flex-basis: 50%; 
        /* makes each column 50% wide */

        /* > means "direct child of", meaning first level descendent: child, not grandchildren */ 
        /* see https://www.w3schools.com/cssref/css_ref_combinators.php */
    }

    .when .flex-container,
    .how .flex-container {
    /*  select "every other" section tag,
        ex: first and third */


        flex-direction: row-reverse;
        /* swap left and right columns */
    }
    

    } /* always comment the closing media query tag
         so you don't delete it by accident */