/* Coming Soon Styles */
/*From ref: https://www.w3schools.com/howto/howto_css_coming_soon.asp*/
body, html {
    height: 100%
}

.link {
    color: #036552; /*primary*/
    text-shadow: 1px 1px #fffff0; /*ivory*/
    font-weight: bold;
    font-size: 18pt;
    text-decoration: none;
}

.bgimg {
    background-image: url('../images/nature.jpg'); /*https://pixabay.com/photos/mountain-landscape-nature-mountains-4387827/*/
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    color: white;
    font-family: "Courier New", Courier, monospace;
    font-size: 25px;
}

/* Position text in the top-left corner */
.topleft {
    position: absolute;
    top: 0;
    left: 16px;
}

/* Position text in the bottom-left corner */
.bottomleft {
    padding: 5px;
    position: absolute;
    bottom: 0;
    left: 16px;
}

/* Position text in the middle */
.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 10px;
}

hr {
    margin: auto;
    width: 40%;
    margin-bottom: 25px;
}

.displayEmail {
    padding: 5px 10px 5px 10px;
    background-color: lightgray;
    border-radius: 3px;
    font-size: 14pt;
}
