/* Color Palette
#FA9F42 - NEON CARROT
#EE7769 - CORAL REEF
#FFAC81 - VERY LIGHT TANGELO
#FFDCC1 - VERY PALE ORANGE
#DDFFCC - NYANZA
#F1FFEA - HONEYDEW
*/

/********************
  Global styles
********************/

html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  body {
    background: #000000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
  }
  
  a {
    color: #ffffff;
    text-decoration: none;
  }
  
  h1, h2{
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
  }
  
  h1 {
    font-size: 3.5em;
  }
  
  h2 {
    font-size: 2.5em;
    text-decoration: overline;
    margin-top: 0;
  }
  
  h3 {
    margin: 0;
  }
  
  .content-wrap {
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 50px;
    overflow: auto;
  }
  
  /*.col-wide {
    width: 70%;
    float: left;
    padding: 20px;
  }
  
  .col-narrow {
    width: 30%;
    float: left;
  }*/
  
  .uppercase {
    text-transform: uppercase;
  }
  
  .btn {
    text-decoration: none;
    background: #f00606d0;
    color: #ffffff;
    padding: 10px;
    display: inline-block;
  }
  
  /********************
    Header and Footer
  ********************/
  
  header {
    padding-top: 50px;
    position: relative;
  }
  
  header, footer {
    background-color: #000000c2;
  }
  
  /* Header */
  header h1, header h2 {
    color: #ffffff;
    margin: 0;
  }
  
  .profile-img {
    border-radius: 50%;
  }
  
  .download {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  /* Navigation */
  
  nav {
    text-align: left;
    background: #000000;
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  nav a {
    display: inline-block;
    padding: 15px 20px;
    text-transform: capitalize;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: overline;
  }
  
  /* Footer */
  footer a {
    font-weight: bold;
  }
  
  footer a:hover {
    text-decoration: overline;
  }
  
  footer {
    text-align: center;
  }
  
  .contact-info a {
    padding: 10px;
    display: inline-block;
  }
  /********************
    Work Experience
  ********************/
  
  .work {
    background-color: #242323;
  }
  
  h3 ~ p {
    margin: 0;
  }
  
  .job-description p:first-of-type {
    margin-top: 0;
    margin-bottom: 25px;
  }
  
  /********************
    Education
  ********************/
  
  .education {
    background: linear-gradient(to bottom, rgba(73, 72, 72, 0.767), rgba(216, 216, 216, 0)), url(https://preview.ibb.co/bQqDEb/vlad_busuioc_116873.jpg) no-repeat fixed;
    background-size: cover;
    color: rgb(255, 249, 249); /* 글자 색상을 흰색으로 설정 */
    padding: 20px; /* 글자와 사진 사이 여백 추가 */
}
  
  p + h3 {
    margin-top: 30px;
  }
  
  /********************
    Education
  ********************/
  
  .certification {
    background: linear-gradient(to top, rgba(73, 72, 72, 0.514), rgba(216, 216, 216, 0)), url(https://preview.ibb.co/bQqDEb/vlad_busuioc_116873.jpg) no-repeat fixed;
    background-size: cover;
}
  
  p + h3 {
    margin-top: 30px;
  }

  p + h2  {
    color: #000000;
  }
  
  /********************
    Media Queries
  ********************/
  
  @media (min-width: 900px) {
    .col-wide {
      width: 70%;
      float: left;
      padding: 25px;
    }
    .col-narrow {
      width: 30%;
      float: left;
    }
  }
  
  @media (max-width:899px) {
    header {
      text-align: center;
    }
    .profile-img {
      width: 100px;
    }

    
  }
  