html {
    height: 100%;
    margin: 0;
}
  
body {
    font: 1rem/1.5 Arial, Helvetica, sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Lato', sans-serif;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    background-color: #EEE5E5;
    color: black;
    height: 100%;
}
  
/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 50px;
    width: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 100%;
  }
  
/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* Google */
.fa-google {
    background: #C71610;
    color: white;
}

/* GitHub */
.fa-github {
    background: #171515;
    color: #e8eaea;
    font-size: 500px;
    
}

/* LinkedIn */
.fa-linkedin {
    background: #0077b5;
    color: white;
}

#socialButtons {
    width: 50%;
    height: 50px;
}
span {
    float: right;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 20px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #28afb0; /* Set a background color */
    color: black; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #19647e; /* Add a dark-grey background on hover */
  }


.center {
    margin: auto;
    width: 50%;
    text-align: center;
    padding: 10px;
}

.centerImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
    margin-bottom: 0px;
    margin-top: 0px;
}


.hussainInfo {
    width: 70%;
    padding: 10px;
    margin: auto;
    font-size: 1.5em;
    margin-top: 1%;
    margin-bottom: 1%;
    float: center;
    text-align: left;
}


.projects {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: auto;
    max-width: 640px;
    max-height: 360px;
    margin-bottom: 3%;
    margin-top: 0%;
}



h1 {
    display: block;
    font-size: 3em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}


.line{
    width:100%;

    -webkit-box-shadow: 0 -14px 14px -14px rgba(0,0,0,37109375);
    -moz-box-shadow: 0 -14px 14px -14px rgba(0,0,0,37109375);
    -ms-box-shadow: 0 -14px 14px -14px rgba(0,0,0,37109375);
    box-shadow: 0 -14px 14px -14px rgba(0,0,0,37109375);
    width: 90%;
    margin-left:5%;
}

#showcase{
    padding-right: 8%;
    padding-left: 8%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#showcase a{
    width: 48%;
    height: 48%;
    margin-bottom: 30px;

    color:#ffffff;
    background-color: rgba(26,25,38,0);
    text-decoration: none;
    transition: 0.8s all;
}
#showcase img{
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 2px 12px rgba(0,0,0,.65234375);
    -moz-box-shadow: 0 2px 12px rgba(0,0,0,.65234375);
    -ms-box-shadow: 0 2px 12px rgba(0,0,0,.65234375);
    box-shadow: 0 2px 12px rgba(0,0,0,.65234375);
    border-radius:2px;
}
#showcase a .img-container:hover .img-desc{
    cursor:pointer;
    background-color:rgba(238, 229, 229, .8);
    color:rgba(0, 0, 0, 1);
}

#showcase a.wide-img{
    width:100%;
}

#showcase .img-container{
    position:relative;
}

#showcase .img-container div.img-desc{
    position: absolute;
    top: 0;
    bottom: 6px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 5.6px);
    transition: .3s ease;
    background-color:rgba(0, 0, 0, 0);
    color:rgba(0, 0, 0, 0);
}

#showcase .img-container h1{
    text-align:center;
}

#showcase .img-desc h1{
    margin-top:22.5%;
    font-size:1.8vw;
    height: 30px;
}
#showcase .wide-img .img-desc h1{
    margin-top:15%;
    height: 1px;
}
#showcase .img-desc p {
    text-align:center;
    font-size:1.3vw;
    height: 2px;
} 


.banner {
    position: absolute;
    top: 10px; /* Adjust banner position */
    left: 10px;
    padding: 5px 10px;
    background-color: rgba(255, 242, 0, 0.895); /* Semi-transparent red */
    color: white;
    text-shadow: #171515;
    font-weight: bold;
    border-radius: 5px;
  }