header{
    font-size: 30px;
}
li{
    font-style: italic;
    
}
body{
    background-color: white;
    
}
nav{
    display: block;
   
}
.fa {
    padding: 20px;
    font-size: 30px;
     width: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    
  }
  .fa:hover {
    opacity: 0.7;
  }
  .fa-linkedin {
    background: #007bb5;
    color: white;
  }
.fa-instagram {
    background: #125688;
    color: white;
  }
  .logo{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  img{
    border-radius: 8px;
    height: 400px;
    width: 400px;
   
 }
 h1{
     text-align: center;
     font-size: 40px;
 }
 .row {
  display: flex;
}

.column {
  flex: 33.33%;
  padding: 5px;
}
body{
  background: linear-gradient(-45deg, #F2EEE3, #c6c6c6, #FAE0BA, #d7d7d7, #bab2ac, #cfcac5);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}