body{
    height:100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-image: linear-gradient(#5192c2, #ffffff, #ffffff 50%);
    background-repeat: no-repeat;
}

#contentContainer{
    height: 100%;
    padding: 12% 0 0 12%;    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;    
}

img{
    max-width: 80%;
    padding:10%;
}

#pageText{
    height: 100%;
    width:50%;
    padding: 5%;
    display:flex;
    flex-direction: column;
    justify-content: center;        
}

#Announcement {
    padding-bottom: 10px;
    font-size: 54px;
    font-weight: bolder;
    text-align: center;
    color:#5192c2;
}

#pageText > p{
    font-size: 30px;
    color:#5192c2;    
}

#Thanks {
    margin: 10px;
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    color:#5192c2;
}

#bottomBar{
    background-color: #5192c2;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 15%;    
    text-align: center;    
}

#bottomBar > ul{
    display: flex;
    align-items: center;
    justify-content:center;
    color: #ffffff;       
    list-style-type: none;
    padding: 25px;     
}

.bottomBarListItem {
    float: left;    
    margin: 10px;
    font-size: 24px;
    text-decoration: none;
    color: #ffffff;
}

/*Screen > 825px*/
/*******************************************************************************/
@media screen and (max-width: 825px) {

    body{
        background-image: none;
        background-color: #ffffff;        
    }

    img{
        height: 250px;
        width: 275px;
    }

    #contentContainer {
        flex-direction: column;
        justify-content: center;
        padding: 0;
        margin: 0;
        width: 100%;        
    }

    #Announcement{
        font-size: 42px;
    }

    #pageText > p{
        font-size: 24px;
    }

    #Thanks{
        font-size: 24px;
    } 

    .bottomBarListItem{
        font-size: 18px;
        margin: 8px;      
    } 

}
/*Screen WIDTH > 600px OR HEIGHT > 725px */
/**************************************************************************************/
@media screen and (max-width: 600px), screen and (max-height: 725px) {  

    img{
        height: 200px;
        width: 225px;
    }   

    #Announcement{
        font-size: 38px
    }

    #pageText > p{
        font-size: 18px;
    }

    #Thanks{
        font-size: 18px;
    }

    .bottomBarListItem{
        font-size: 12px;
        margin: 6px;    
    } 
}

/*Screen > 400px OR HEIGHT > 600px */
/****************************************************************************************/
@media screen and (max-width: 400px), screen and (max-height: 600px){  

    img{
        height: 175px;
        width: 200px;
    }   

    #Announcement{
        font-size: 32px
    }

    #pageText > p{
        font-size: 16px;
    }

    #Thanks{
        font-size: 16px;
    }

    .bottomBarListItem{
        font-size: 10px;
        margin: 4px;      
    } 
}

/*Screen > 300px OR HEIGHT > 300px */
/****************************************************************************************/
@media screen and (max-width: 300px), screen and (max-height: 300px){  

    img{
        height: 100px;
        width: 125px;
    }   

    #Announcement{
        font-size: 24px
    }

    #pageText > p{
        font-size: 14px;
    }

    #Thanks{
        font-size: 14px;
    }

    .bottomBarListItem{
        font-size: 8px;
        margin: 2px;     
    } 
}





