#flexbox-template-1 .courses{
	display: flex;
    flex-wrap: wrap;
}

#flexbox-template-1 .course{
	margin: 0 50px 25px 0;
	position: relative;
}

#flexbox-template-1 .course:hover{
    border-radius: 1rem;
    transform: scale(1.025);
    transition-duration: 0.3s;
    box-shadow: 3px 10px 10px 0 rgba(0, 0, 0, 0.5);
}

#flexbox-template-1 .course a{    
    display: block;	
    width: 150px;
	height: 225px;
}

#flexbox-template-1 .course-logo-and-name{
    position: absolute;
    width: 75%;
    left: 12.5%;
    top: 75px;
    text-align: center;
}

#flexbox-template-1 .course-name{
	font-size: 1.1rem;
}

#flexbox-template-1 .course-number{
	position: absolute;
    top: 5px;
    right: 57px;
    font-size: 1.25rem;
	color: #F7FAFC;
}