body, html {
    /*
  The default html interpertation adds margin and padding to the basic elements
  So it can be logically helpful to remove them from the beginning!
  */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.2vw;
}

.flex-header{
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9bc4e2;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.flex-header-name {
  font-size: 2.5vw;
  color: #39424e;
  font-family: 'Gill Sans';
  font-weight: bold;
}

.flex-links {
  color: #fff;
  margin-right: 30px;
  display: flex;
  justify-content: space-around;

}

.flex-links a {
  margin: 10px;
  font-size: 15px;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
}

.flex-links img{
  width: 30px;
  height: 30px;
}

main{
  background-color: #fff;
}

.about-me{
  font-size: 1.2vw;
  margin-top: 2%;
}
h3{
    font-size: 1.4vw;
    text-decoration: underline;
    color: #39424e;
    line-height: 3px;
    font-family: sans-serif;
    font-weight: bold;
    text-align: center;
  
  }

.about-me p{
    margin-right: 20%;
    margin-left: 20%;
    text-align: justify;
    line-height: 130%;
}
.about-me  .cursive {
    font-style: italic;
    text-align: center;
  }

.about-me a {
  text-decoration: underline;
  text-decoration-style: dotted;
  color: inherit;
}


.second-part{
    margin-block-start: 2%;
margin-block-end: 2%;
}

.projects {
background-color: #fff;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.projects a{
    text-decoration: none;
    color: inherit;
}

.projects div{
    flex: 1 0 auto;
    max-width: 35%;
    padding: 0 50px;
    padding-bottom: 2%;
    text-align: center;
}
.projects div .project-img{
    width: 70%;
    height: 55%;
    text-align: center;
}

.projects div .project-img1{
    width: 70%;
    height: 50%;
    text-align: center;
}

.projects div .project-img2{
    width: 50%;
    height: 50%;
    text-align: center;
}

.projects div p{
    font-size: 0.98vmax;
    text-align: justify;
}


.flex-footer{
  padding-left: 50px;
  padding-top: 1rem;
  background-color: #eeeeee;
  padding-bottom: 2rem;
  color: #666;
  text-align: left;
  font-size: 1vw;
}

.flex-footer p {
  font-size: 1.2vw;
  text-decoration: underline;
  color: inherit;
  font-weight: bold;
}

