﻿
.wrapper {
    display: grid;
    grid-template-columns: repeat(12, minmax(.5rem, 5rem));
    grid-template-rows: auto;
    justify-content: center;
    align-content: start;
    height: 90vh;
    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;
}

.centergrid {
    grid-column: 1/13;
    grid-row: 1/2;
    width: 100%;
    height: auto;
    aspect-ratio: 21/13;
    background: none;
    display: grid;
    grid-template-columns: repeat(12, minmax(.5rem, 5rem));
    grid-template-rows: auto;
    justify-content: center;
    align-content: start;
    border-radius: 8px;
}


.content {
    grid-column: 1/13;
    grid-row: 3/4;
    width: 100%;
    min-height: 80vh;
    background-color: #314c65;
    text-align: center;
    color: ivory;
    opacity: .7;
}

    .content a {
        color: ivory;
        text-decoration: underline;
    }



.DivLogout {
    width: 100%;
    grid-column: 1/13;
    height: auto;
    aspect-ratio: 21/13;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    background: rgba(50, 70, 100, .5);
    padding: .5rem;
    opacity: .8;
    box-shadow: 2px 2px 6px 2px #444;
}



    .DivLogout h2 {
        font-weight: normal;
        color: ivory;
        padding-top: 1rem;
    }

    .DivLogout h3 {
        font-weight: normal;
        color: ivory;
        margin: 0;
    }

    .DivLogout p {
        font-size: 1.2em;
        font-weight: normal;
        color: #444;
        margin: 0;
    }




.smalltext {
    font-style: italic;
    font-size: .6rem;
}

.AvXamprep_logo_image {
    padding: .3em;
    display: block;
    height: 5rem;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    border-radius: .5rem;
}




.divlogo {
    height: 10vw;
    width: 10vw;
}

.divlogo2 {
    height: 10vw;
    width: auto;
}

.logo {
    animation: fade_in2 2s ease-out;
    /*animation-delay: 1s;*/
    animation-fill-mode: forwards;
    height: 8rem;
    opacity: 0;
    display: block;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}


#thanks {
    animation: fade_in2 2s ease-out;
    animation-duration: 2s;
    animation-fill-mode: backwards;
    margin: 0;
    display: block;
}

.page-buttons {
    height: 4rem;
    margin-right: auto;
    margin-left: auto;
    background-color: #f1ede1;
    color: #113250;
    display: block;
}
    .page-buttons:hover {
        box-shadow: .2rem .2rem .2rem #000;
        cursor: pointer;
        background-color: #f1ede1;
    }

    .page-buttons:active {
        cursor: grabbing;
    }


@keyframes fade_out {
    0% {
        opacity: 1;
        transform: scale(1.0);
    }


    100% {
        opacity: 1;
        transform: scale(0) /*rotate(40deg)*/
    }
}

@keyframes fade_in {
    0% {
        opacity: 0;
        left: 150px;
        top: 0px;
        /*transform: scale(0) */
    }

    100% {
        opacity: .8;
        left: 60px;
        top: 0px;
        transform: scale(1.0) rotate(14deg);
    }
}

@keyframes fade_in2 {
    0% {
        opacity: 0;
        top: 0;
        transform: scale(0)
    }

    100% {
        opacity: 1.0;
        left: 0;
        top: 0;
        transform: scale(1.0);
    }
}

@media screen and (max-width: 992px) {

    .DivLogout h2 {
        font-size: 1.5rem;
    }

    .DivLogout p {
        font-size: 1.2em;
    }

    @media screen and (max-width: 768px) {

        .DivLogout {
            width: 100%;
        }


            .DivLogout h2 {
                font-size: 1.3rem;
            }

            .DivLogout p {
                font-size: 1.0em;
            }

        .page-buttons {
            font-size: .9rem;
            width: 70%;
        }
    }


    @media screen and (max-width: 600px) {

        .DivLogout h2 {
            font-size: 1.3rem;
        }

        .DivLogout p {
            font-size: 1.0em;
        }
    }
}
