* {
    box-sizing: border-box;
    margin: 0;
  }

html {
    background: #00c6ff;
    font-family: Arial, Helvetica, sans-serif;
}

.title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1em;
    color: #fff;
    font-size: 1.3em;
    align-items: center;
}

.shadow{
    text-shadow: 0px 0px 4px #859398;
}
.portfolio {
    padding: 1em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
}

.portfolio-header {
    text-align: center;
    grid-column: 1 / -1;
    color: #fff;
    font-size: 1.8em;
}

.portfolio-heading{
    display: flex;   
    flex-direction: column;
    align-items: center;
}

.img-container{
    display: flex;
    justify-content: center;
}

img {
    max-height: 400px;
    max-width: 100%;
    cursor: pointer;
 }

 img:hover {
    box-shadow: 0 0 1.5em rgba(0,0,0,.5);
 }
 

.portfolio-card-title {
    font-size: 1.5rem;
    margin: .5em 0em 1em;
}


.portfolio-card {
    box-shadow: 0 0 1em rgba(0,0,0,.3);
    padding: 1.5em;
    width: 100%;
    background: linear-gradient(45deg, #70e1f5, #ffd194);
    position: relative;

}

.portfolio-card-p{
    position: absolute;
    bottom: 5px;
    left: 10px;
}


.portfolio-card-description {
    width: 100%;
    margin-bottom: 1.5em;
}


.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #0072ff;
    height: 80px;
    width: 100%;
    padding: 3em;
  }

.fa-brands,
.fa-github{
  color: white;
  font-size: 3.5em;
}