/* services */
#fridayDeals {
    padding-top: 60px;
    padding-bottom: 50px;
    height: auto;
    width: 100%;
    background-image: url('Space.png');
    background-size: 25%;
    background-position: center;
    background-attachment: fixed;
}


#fridayDeals img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

#fridayDeals h2 {
    padding-top: 10px;
    font-weight: bold;
    color: white;
}

#fridayDeals h3 {
	text-align: center;
	color: white;
	padding-bottom: 10px;
    text-shadow: 0 0 10px black, 0 0 20px black;
    font-style: italic;
}

#fridayDeals .icon {
	font-size: 40px;
	margin: 20px auto;
	padding: 8px;
	height: 80px;
	width: 80px;
	border-radius: 50%;
    color: white; /* Hide original text color */
    animation: animateIconBorder 4s ease-in-out infinite;
    background-color: #558de0;
}

@keyframes animateIconBorder {

    0%, 100% {
        box-shadow: 0 0 10px black, 0 0 20px black;
        text-shadow: none;
    }

    50% {
        box-shadow: 0 0 10px black, 0 0 20px black, 0 0 40px black, 0 0 80px black;
        text-shadow: 0 0 10px #ffe233; 
    }
}

#fridayDeals p {
	font-size: 16px;
	margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
	color: white;
    text-shadow: 0 0 10px black, 0 0 20px black;
}

/* services */
