html{
   
    width: 100%;
    height: 100%;
   
}

body, #main{
   
}
.navbar-nav a{
    color: white;
    font-size: 1rem;
    font-weight: 600;
}
.navbar-nav a:hover{
    color: #ffe700;
    font-size: 1rem;
    font-weight: 600;
}
#carCenter{
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.carousel-inner img{
    max-width: 80%;
    max-height: inherit;
    margin: auto;
    border-radius: 10px;
}

.carousel-indicators li{
    visibility: hidden;
}

.carousel-caption{
    background-color: rgba(255,255,255,0.8);
    max-width: 100%;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    color: black;
}

.carousel-caption p,h5{
    color: black;
}

.navbar-toggler{
    color: white;
}

#accountLabel{
    text-decoration: underline;
    text-align: center;
    margin-bottom: 1.25rem;
}
#accountCreationCont{
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2rem;
    margin-top: 0;
   padding-top: 3rem;
    padding-bottom: 3rem;
   
    font-size: 1.15rem;
    font-weight: 600;
}
#accountCreationCont label{
    margin-right: 2rem;
    margin-left: 5rem;
}
footer{
    text-align: center;
    width: 100%;
}

    body{
        height: 100vh;
    }
    #main{
        width:100%;
        overflow:auto;
        height: 100%;
        display: flex;
    }
    #left,#right{
        width:30%;
        margin: 0 auto;
    }
    #middle{
        width:40%;
        margin: 0 auto;
    }
    #Day{
        height: 30%;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    #CurrentCal{
        height: 70%;
        font-size: 2rem;
        margin-top: 4rem;
    }
   #Dayl,#Dayx, #Dayt, #Dayp{
        display: flex;
        justify-content: center;
        align-items: center;
        width:100%;
        height:30%;
    }
    #Game,#photos,#cal,#quote{
        display: flex;
        justify-content: center;
        align-items: center;
        width:100%;
        height:50%;
    }

    .card-img-top{
        width: 100%;
        height: 10rem;
    }    
    .card-title{
        color: #fd6060;
    }
    #back{
        padding: 10px;
       
    }

    #qod{
        text-align: center;
        font-size: 1.5rem;
        padding: 2rem 2rem;
    }
    #userInf{
        padding-left: 35%;
    }
 #userInf li{
        list-style: none;
 }
  #logo{
      margin-left: 28%;
      margin-right:auto;
                
 }
 #clock ,#dateofyear{
     color:white;
     size: 2rem;
 }
 #clock{
     margin-left: 5rem;
 }
 #dateofyear{
     margin-right: 4rem;
 }
 #settings a{
     color: #ffe700;
     font-size:2rem;
     text-align: center;
 }
 
 .scoreGrp{
     list-style: none;
 }
 #mmLogo{
     max-height: 6rem;
     max-width: 5rem;
     margin-right: auto;
     margin-left: auto;
 }

.calcontainer {
    width: 100%;
    height: 100vh;
   
    color: #66CCCC;
    display: flex;
    justify-content: center;
    align-items: center;
    

}

.calendar {
    width: 45rem;
    background-color: black;
    height: 55rem;   
}

.month {
    width: 100%;
    height: 9rem;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    text-align: center;
    margin-top: 1rem;
   }

.month i {
    font-size: 3rem;
    cursor: pointer;
}

.month h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2rem; 

}

.month p {
    font-size: 1rem;
    font-weight: 800;

}

.weekdays {
    width: 100%;
    height: 3rem;
    padding: 0 0.4rem;
    display: flex;
    align-items: center;
    

}

.weekdays div {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    width: calc(44.2rem / 7);
    display: flex;
    justify-content: center;
    align-items: center;

}

.days {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.2rem;

}

.days div {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.3rem;
    width: calc(40.2rem / 7);
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
    border-style: solid;
    
}

.days div:hover:not(.today) {
    background-color: #cc0066;
    cursor: pointer;
}

.prev-date,
.next-date {
    opacity: 0.5;

}

.today {
    background-color: #fd6060;

}


 