a:link {
  color: black;
  background-color: transparent;
  text-decoration: none;
}
.text-black{
	color: black;
}
.hdr {
  text-align: center;
  background: url('http://placeimg.com/640/480/tech') no-repeat top center ;
  background-size: cover;
  overflow: hidden;
  padding-top: 30px;
}
.hdr {
  line-height: 1.5;
}
.hdr .profile-image {
	
  margin-top: 50px;
  margin-bottom:5px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid white;
  transition: all .5s;
}
.hdr .profile-image:hover {
  transform: scale(1.2) rotate(360deg);
}
.my-background-div {
    /* 1. Set the image source */
    background-image: url('images/BrickBackground.png');

    /* 2. Control how the image is scaled */
    /* 'cover' scales the image to cover the entire div, cropping if necessary. */
    background-size: cover; 

    /* 3. Prevent the image from tiling */
    background-repeat: no-repeat; 

    /* 4. Set fixed dimensions so the div is visible */
    /* This is critical, as a div with only text content often collapses! */
    height: 250px; 
    width: 100%;

    /* Optional: Center the image within the div */
    background-position: center center;

    /* Optional: Adjust text color for contrast */
    color: white; 
    text-shadow: 2px 2px 4px #000000;
}
.tag {
  background-color: #efefef;
  color: black;
  padding: 5px;
  border-radius: 5px;
  display: table;
  margin: 2px auto;
} 
.button{
	/* Background and Font Color */
  background-color: black; /* Sets the button background to black */
  color: white; /* Sets the text/font color to white */

  /* Round Corners */
  border-radius: 8px; /* Adjust this value for more or less roundness */
  
  /* Additional Styling for Good Measure */
  padding: 10px 20px; /* Adds space around the text */
  border: none; /* Removes the default border */
  cursor: pointer; /* Indicates it's clickable */
  font-size: 16px; /* Sets a readable font size */
  
  /* 1. Make it a block element */
  display: block;
  
  /* 2. Define a width (margin: auto won't work without a width) */
  width: 150px; 
  
  /* 3. Set left and right margins to auto */
  margin-left: auto;
  margin-right: auto;
}
.pic {
    display: flex;
    justify-content: center;
}

.pic img,
.img-size {
    max-width: 100%;
    height: auto;
}
.center-in-card{
	text-align: center;
}
.card-center{
	text-align: center;
}
.card {
  margin: 20px;
  padding: 20px;
  width: 100%;
  height: auto;
  max-width: none;
  text-align: left;
  background: #fff;
  border-bottom: 4px solid #ccc;
  border-radius: 6px;
  
}
.card-text,
p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.card:hover {
  border-color: #0000FF;
}
.cart-count{
	color:#ffffff;
}
/* footer styles */

/* a.linkedin { */
  /* background-image: url(images/linkedin.svg); */
/* } */
a.github {
  background-image: url(images/github.svg);
}
.ico:hover {
  opacity: 1;
}
.social, .ico{
	display:inline-block;
}
.ico{
	width:25px;
	height:25px;
	opacity: .5;
  transition: all .25s;
}
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
}
/* Desktop - make cards equal height */
@media (min-width: 992px) {

    .row {
        display: flex;
        flex-wrap: wrap;
    }

    .card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .col-lg-4 {
        display: flex;
    }
}

/* Mobile & Tablet - let content determine height */
@media (max-width: 991px) {

    .card {
        height: auto;
    }

    .col-lg-4 {
        display: block;
    }
}
@media screen and (max-width: 992px) {
	.footer{
		display:none;
	}
}		

