body
{
    margin: 0%;
    padding: 0%;
}
/* HEADER */
header 
{
    background: white;
}
.MainTitle 
{
    padding-top: 20px;
    text-align: center;
    font-size: 35px;
    color: white;
    background: green;
    font-family: 'Rubik',sans-serif;
}
.Star 
{
    color: white;
    display:inline-block;
}
.HeaderButton:hover 
{
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
/* MAIN BODY */
.MainContainer
{
    background: green;
    padding: 5px 0px 10px 0px;
}
.MainContainerPic
{                
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 70%;
    height: auto;
    display: block;
}
.MainContainerText
{
    padding: 5px 5px 5px 5px;
    color: white;
}
.McText
{
    font-family: 'Rubik',sans-serif;
    font-size: 15px;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}
.McPic {
    width: 150px;
    height: auto;
    padding-left: 20px;
}
.McPic:hover
{
    cursor: pointer;
}
/* SPORTS CONTAINER */
.SportsContainerBox
{
    background: white;
    padding: 5px 5px 5px 5px;
}
.ScTitle
{
    text-align: center;
    font-size: 35px;
    color: green;
    font-family: 'Rubik',sans-serif;
    padding-bottom: 5px;
    padding-top: 20px;
}
.SportsContainer
{
    padding: 20px 0px 40px 0px;   
    margin: auto; 
}
.SportContainer
{
    margin: auto;
    padding: 5px;
    opacity: 1;
    display: block;
    width: 70%;    
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
    position: relative;
}
.middle
{
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}
.SCIMG {
    border-radius: 20px;
}

.SportContainer:hover .SCIMG
{
    opacity: 0.3;
}
.SportContainer:hover .middle
{
    opacity: 1;
}
.imgText
{
    background-color: green;
    color: white;
    font-size: 15px;
    padding: 8px 8px;
    width: 100%;    
    height: auto;
    border-radius: 20px;
}
/* ABOUT APP CONTAINER */
.AboutAppBox
{

    background: green;
    font-family: 'Rubik',sans-serif;
    padding: 5px 5px 5px 5px;
    color: white;
}
.APCTitle
{
    text-align: center;
    font-size: 35px;
    color: white;
    font-family: 'Rubik',sans-serif;
    padding-bottom: 20px;
    padding-top: 20px;
}
.AAC_2
{
    padding-top: 5px;
    opacity: 1;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
    position: relative;
}
.AAC_2:hover .MainContainerPic
{
    opacity: 0.3;
}
.AAC_2:hover .middle
{
    opacity: 1;
}
/* FOOTER */
footer
{
    background: white;
    padding: 20px;
}
.footerText
{
    text-align: center;
    font-size: 15px;
    color: green;
    font-family: 'Rubik',sans-serif;
}