* {
    box-sizing: border-box;
  }
  
  html {
    height: auto;
    width: 100vw;
  }
  
  body {
    height: auto;
    width: auto;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: max-content auto;
    grid-template-areas: "header"
                         "main";
    margin: 0;
    font-size: 16px;
    font-family: Helvetica, sans-serif;
    /* background-color:rgba(100, 149, 237, 0.25); */
    background-image: radial-gradient(rgb(245, 244, 239), rgb(180, 201, 239));
  }
  
  header {
    grid-area: header;
  }
  
  main {
    grid-area: main;
    width: 100%;
  }
  
  hr {
    color:cornflowerblue;
  }
  


/* ========================= */
/* START: Site Nav Bar */
/* ========================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 2;
    width: 100%;
    border-bottom: solid 1px;
}
  
.main-header-topline {
    background-color: dodgerblue;
    display: flex;
    flex-shrink: 1;
    justify-content: space-between;
    padding: 1rem 2rem;
}
  
.main-logo {
    flex-shrink: 1;
}
  
#main-title {
    font-family:'Times New Roman', Times, serif;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
/* maven pro, play,  */

    font-size:4rem;
    font-variant-caps: small-caps;
    text-transform: capitalize;
    font-style:italic;
    flex-shrink:1;
    text-overflow: clip;
    font-weight: 800;
    margin: 0rem;
    text-align: left;
    letter-spacing: .3rem;
}
  
#main-byline {
    font-family:'Times New Roman', Times, serif;
    margin-top: 0rem;
    font-style:italic;
    text-align: left;
}


.main-user {
    margin-top: .5rem;
    margin-bottom: 2px;
    justify-content: space-between;
    text-align: right;
}

#main-logout {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.registration-button-div {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    margin: 0;
    /* background-color: #f8f9fa; */
    /* font-family: Arial, sans-serif; */
    padding: 3rem 2rem 5rem 2rem;
}

.registration-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 60px;
    background-color: dodgerblue;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.registration-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.registration-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


#login-tbl td:first-child {
    text-align: right;
}

#login-tbl td:nth-child(2) {
    text-align: left;
}

#login-existing-not {
    font-size: 1.5rem;
    text-transform: uppercase;
}

#login-existing,
#login-inquiry,
#login-fresh {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    text-align: center;
}

table {
    position: relative;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.login-option {
    padding: 1rem;
    background-color: bisque;
    border-style: solid;
    border-radius: .5rem;
    font-size: 3rem;
    margin: 2rem auto;
    text-align: center;
    width: 50%;
}
  

#pool-welcome {
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

#external-site-links {
    margin-top: 2rem;
    text-align: center;
}

.donation-img-port,
.donation-img-land,
.donation-img-sq {
    max-width: 60%;
}

.donation-headline {
    margin-top: 2rem;
    font-size: 3rem;
    font-weight: 800;
}

.donation-year {
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.donation-desc {
    font-size: 1.5rem;
}


@media only screen and (max-width: 600px) and (orientation: portrait) {
    html {
        font-size: 6px;
    }
}
  
@media only screen and (min-width: 600px) and (orientation: portrait) {
    html {
        font-size: 7px;
    }
}
  
@media only screen and (min-width: 768px) and (orientation: portrait) {
    html {
        font-size: 9px;
    }
}

@media only screen and (min-width: 992px) and (orientation: portrait) {
    html {
        font-size: 12px;
    }
}
  
@media only screen and (min-width: 1200px) and (orientation: portrait) {
    html {
        font-size: 16px;
    }
}




/* LANDSCAPE GROWTH */
@media only screen and (max-width: 600px) and (orientation: landscape) {
    html {
        font-size: 6px;
    }
}
  
@media only screen and (min-width: 600px) and (orientation: landscape) {
    html {
        font-size: 7px;
    }
}
  
@media only screen and (min-width: 768px) and (orientation: landscape) {
    html {
        font-size: 9px;
    }
}
  
@media only screen and (min-width: 992px) and (orientation: landscape) {
    html {
        font-size: 10px;
    }
}
  
@media only screen and (min-width: 1200px) and (orientation: landscape) {
    html {
        font-size: 11px;
    }
}
  
@media only screen and (min-width: 1500px) and (orientation: landscape) {
    html {
        font-size: 12px;
    }
}
  
@media only screen and (min-width: 1800px) and (orientation: landscape) {
    html {
        font-size: 13px;
    }
}
  
@media only screen and (min-width: 2100px) and (orientation: landscape) {
    html {
        font-size: 14px;
    }
}
  
@media only screen and (min-width: 2500px) and (orientation: landscape) {
    html {
        font-size: 15px;
    }
}
  
@media only screen and (min-width: 2800px) and (orientation: landscape) {
    html {
        font-size: 16px;
    }
}
