body
{
    margin: 0%;
    padding: 0%;
}
/* HEADER */
header 
{
    background: white;
}
.MainTitle 
{
    padding-top: 30px;
    text-align: center;
    font-size: 80px;
    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
{
    display: flex;
    background: green;
    padding: 20px 0px 40px 0px;
}
.MainContainerPic
{     
    border-radius: 40px;           
    padding: 20px 20px;
}
.MainContainerText
{
    padding: 30px 20px 20px 20px;
    color: white;
}
.McText
{
    vertical-align: top;
    font-family: 'Rubik',sans-serif;
    font-size: 40px;
}
.McPic:hover
{
    cursor: pointer;
}
/* SPORTS CONTAINER */
.SportsContainerBox
{
    background: white;
    padding: 20px 20px 20px 20px;
}
.ScTitle
{
    padding-top: 30px;
    text-align: center;
    font-size: 80px;
    color: green;
    font-family: 'Rubik',sans-serif;
    padding-bottom: 20px;
}
.SportsContainer
{
    display: flex;
    font-family: 'Rubik',sans-serif;
    padding: 20px 0px 40px 0px;    
}
.SportContainer
{
    flex: 33.33%;
    padding: 10px;
    opacity: 1;
    display: block;
    width: 100%;
    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: 20px;
    padding: 16px 16px;
    width: 180px;
    border-radius: 20px;
}
/* ABOUT APP CONTAINER */
.AboutAppBox
{
    background: green;
    font-family: 'Rubik',sans-serif;
    padding: 20px 20px 20px 20px;
    color: white;
}
.APCTitle
{
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    font-size: 80px;
    color: white;
    font-family: 'Rubik',sans-serif;
}
.AboutAppContainer
{
    display: flex;
    padding: 20px;
}
.AAC_2
{
    opacity: 1;
    display: block;
    width: auto;
    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: 30px;
}
.footerText
{
    text-align: center;
    font-size: 18px;
    color: green;
    font-family: 'Rubik',sans-serif;
}