.splash { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100%;
    row-gap: 10pt;
    padding: 5em 3em;
    text-align: center;
    box-sizing: border-box;
    background: url("IMG_6464.JPG");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: black;
    background-attachment: fixed;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-bottom: 1px solid #55555555;
    transition: background-image 100ms linear;
}

a { 
    color: blue;
    text-decoration: none;
}
.block { 
    display: block;
}

.splash > div:nth-child(1) { 
    font-size: 22pt;
    font-family: 'Quicksand', sans-serif;
    /* font-family: Helvetica,Arial,  sans-serif; */
    font-weight: 800;
    transition: background-color 1s linear;
}

.splash > div:nth-child(2) { 
    font-size: 13pt;
    font-weight: 600;
    color: white;
    /* background: #ffffff50; */
    padding: 10px;
    max-width: 20em;
    border-radius: 10px;
    /* font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif */
}
body { 
    background: #fbfbfb;
}
html , body{ 
    margin: 0;
    padding: 0;
}

body,main, html { 
    height: 100%;
}

h2 {
    margin-left: 1em;
    text-align: center;

}
main { 
    font-family: Helvetica, sans-serif;
}

body{ 
    max-width: 100vw;
    overflow-x: hidden;
}

.contact { 
    background: #282828;
    padding: 1em;
    padding-bottom: 3em;
    color: white;
    display: flex;
    flex-wrap: wrap;
    margin-top: 1em;
    justify-content: space-evenly;
    margin-bottom: 1em;
}

.contact > a { 
    color: inherit;
}
.instagram-container { 
    display: flex;
    justify-content: center;
    padding: 0 10px;
}



.dummy-instagram { 
    width: 500px;
    height: 500px;
    border: 1px solid grey;
    border-radius: 5px;
}
footer { 
    border-top: 1px solid grey;
    min-height: 3in;
}

.contact-on-facebook {
    margin-top: 1em; 
    margin-left: 3em;
}


 @media screen and (orientation:portrait) { 
    .splash {
        background: url("Image-1.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .splash > div:nth-child(1) { 
        color: white;
    }

}