﻿
.wrapper {
    display: grid;
    grid-template-columns: repeat(12, minmax(.5rem, 3.5rem));
    grid-template-rows: auto;
    justify-content: center;
    align-content: start;
    height:auto;
    min-height: 80vh;
    border: none;
    background-color: #f1ede1;
    background-image: linear-gradient(rgba(241,237,225, 0) 0%,rgba(168,176,179, 1) 100%), url('../Images/Mysky02.jpg');
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    background-position: center center;
    padding-bottom:1rem;
}


.centergrid {
    grid-column: 1/13;
    grid-row: 1/2;
    width: 100%;
    height:100%;
    aspect-ratio: 21/13;
    background-color: #314c65;
    display: grid;
    grid-template-columns: repeat(12, minmax(.5rem, 3.5rem));
    grid-template-rows: auto;
    justify-content: center;
    justify-items: center;
    align-content: start;
    border-radius: .3rem;
    margin-bottom:3rem;
}
.this-page-heading {
    grid-column: 1/13;
    grid-row: 1/2;
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    text-align: center;
    width: 100%;
    background-color: #113250;
    opacity: .7;
    color: white;
}

.this-page-heading * {
    color: white;
}

.content {
    grid-column: 1/13;
    grid-row: 2/3;
    width: 100%;
    height:auto;
    background-color: #314c65;
    text-align: center;
    color: ivory;
    padding: 1rem;
    margin-bottom:1rem;
}

.datalist2 {
    width: 100%;
    background-color: #FFFFF0;
    border-radius: .3rem;
    text-align: center;
    padding:1rem;
}



.hyperlinks {
    display: block;
    text-align: left;
    padding: .2rem;
    border-radius: .2rem;
    color:#113250;
    width: 100%;
    margin: .2rem;
    margin-left: auto;
    margin-right: auto;
}

    .hyperlinks:hover {
        background-color: #FFFFF0;
        box-shadow: .1rem .2rem .2rem black, -.1rem -.2rem .2rem gray inset, .1rem .2rem .2rem ivory inset;
        cursor: pointer;
    }



.this-page-button {
    border: solid thin gray;
    padding: .2rem;
    margin: .5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: .5vw;
    height: 3.5rem;
    width: auto;
    aspect-ratio: 21/8;
    border-radius: .3rem;
    background-color: #f1ede1;
    box-shadow: .1rem .1rem .2rem black, -.1rem -.1rem .2rem gray inset, .1rem .1rem .2rem ivory inset;
    white-space: normal;
    display: block;
    text-align: center;
}

    .this-page-button:hover {
        background-color: #FFFFF0;
        box-shadow: .1rem .2rem .2rem black, -.1rem -.2rem .2rem gray inset, .1rem .2rem .2rem ivory inset;
        cursor :pointer ;
    } 



@media screen and (max-width: 992px) {

    .hyperlinks {
        font-size: 1.0rem;
        width: 100%;
        padding: .4rem;
    }

    .datalist2 {
        width: 60%;
        margin-bottom: .4rem;
    }
}

@media screen and (max-width: 768px) {

    .datalist2 {
        width: 100%;
        margin-bottom: .3rem;
    }
}

@media screen and (max-width: 600px) {

    .hyperlinks {
        font-size: 1.0rem;
        width: 100%;
        padding: .3rem;
    }

    .datalist2 {
        width: 100%;
    }

    }
