html {
    font-family: Roboto, sans-serif;
    --primary-color: #2f80ed;
    --secondary-color: #333333;
    --bg-color: #ffffff;
  }
  
  body {
    background-color: var(--bg-color);
  }
  
  * {
    color: var(--secondary-color);
  }
  
  h1 {
    color: var(--primary-color);
    margin-bottom: 0.25em;
  }
  
  h2 {
    color: var(--secondary-color);
    font-size: 1em;
    margin-top: 0;
    margin-bottom: 1em;
  }
  
  h3 {
    color: var(--primary-color);
  }
  
  a {
    color: var(--primary-color);
  }
  
  section {
    margin-bottom: 3em;
    position: relative;
  }
  
  .cv {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .contacts {
    margin-bottom: 2em;
  }
  
  .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .contact__type {
    min-width: 90px;
  }
  
  .education {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2em;
  }
  
  .education__date {
    min-width: 185px;
    margin-bottom: 1em;
  }
  
  .education__name {
    font-weight: bold;
  }
  
  .education__company {
    margin-bottom: 0.5em;
  }
  
  @media (max-width: 575px) {
    .education {
      display: block;
    }
  }
  
  html.transition,
  html.transition * {
    -webkit-transition: all 750ms !important;
    transition: all 750ms !important;
    -webkit-transition-delay: 0 !important;
            transition-delay: 0 !important;
  }