label {
    color: #333;
}

#gridCheck:hover {
    border-color: rgb(236, 55, 236);
        color: white;
    }
#gridCheck:active {
    border-color: rgb(236, 55, 236);
        color: white;
    }
#gridCheck:focus {
    border-color: rgb(236, 55, 236);
    box-shadow: 0 0 0 .25rem rgb(221, 207, 221);
        color: white;
    }
    #gridCheck:checked {
    border-color: rgb(236, 55, 236);
        background-color: purple !important;
        color: white;
    }
.button{
   border: none;
   border-radius: 5px;
   padding: 8px 8px;
   font-size: 18px;
   background-color: purple;
   color: white;
}

.profile-title p{
  color: purple;
  font-size: 25px;
  font-weight: 600;
}
.card{
	margin-left: 10px;
	margin-right: 10px;
}
.skip{
    font-size: 23px;
    font-weight: 600;
    color: purple;
}

.profileModal {
    display: none; 
    position: fixed; 
    z-index: 100; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.profileClose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.profileClose:hover,
.profileClose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}