*{
  margin: 0;
}
body{
  min-width: 320px;
  font-family: sans-serif;
  color: grey;
  font-size: 1.15em;
  background-color: #C7E3F2;
}
main{
  width: 90vw;
  margin: 20px auto;
  border-radius: 10px;
  min-width: 320px;
  max-width: 747px;
}
header{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #FFFFFF;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.625rem 1.2rem;
  box-sizing: border-box;
  
}
section{
  color: #FFFFFFD4;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
}
footer{
  background-color: #FFFFFF;
  padding: 20px 20px 50px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: .9em;
}
h2{
  color: black;
  font-weight: normal;
  font-size: 2.2em;
  
}
h3{
  font-weight: normal;
  font-size: 1.1em;
  
}
h4{
  font-weight: normal;
  font-size: 1.4em;
  padding-bottom: 25px;
  
}
p{
  line-height: 1.8;
}
ul{
   padding-inline-start: 0;
}

li{
    margin-bottom: 16px;
    list-style-type: none;
    display:flex;
    align-items: baseline;
}

a{
  color: #FFFFFF;
  transition: 250ms ease-in all;
  
}

a:hover {
  color:  #5DFCFF;
  border-color:  #5DFCFF;
  transition: 250ms ease-in all;
}

i{
  padding-right: 16px;
}
.important-text{
  font-weight: bold;
}

.flex-width-right{
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}
.resume-title-image{
  border: 1px solid lightgrey;
  height: 200px;
  width: 200px;
  background-image: url(https://minimalresume.carrd.co/assets/images/image01.jpg?v=4cfcdb81);
  background-size: 230px;  
  background-repeat: no-repeat;
  border-radius: 50%;
}

.title-section{
  text-align: center;
}

.title-name{
  margin-top: 30px;
  margin-bottom: 20px;
}

.about-section{
  background-color: #4299FF;
}

.work-section{
  background-color: #3288ED;
}

.contact-section{
  background-color: #277DE3;
}

.social-media{
  display: flex; 
  flex-wrap: wrap;
  gap: 15px;
}

.social-media-link{
  padding: 12px 17px;
}


.social-media-link{
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
}

.display-inline{
  display: inline;
  
}

@media screen and (min-width: 680px) {
    section {
        display: flex;
        padding: 40px;
        flex-direction: row;
        gap: 40px
    }
  
    h4{
      width: 25%;
      text-align: right;
      font-size: 1.2em;
      
    }

    .flex-width-right{
      padding-top: 0;
      border-top: none;
      width: 70%;
      border-left: 1px solid rgba(255, 255, 255, 0.26);
      padding-left: 40px;
    }
}