* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.container {
  margin: 20px auto;
  width: 1024px;
  font-family: 'Work Sans', sans-serif;
  border: #4b4b4b 1px solid;
  box-shadow: 1px 1px 10px #000;
  display: flex;
  flex-wrap: wrap;
}


.column-left {
  width: 30%;
  background-color: #dfdfdf;

}

.column-left .cv-nav ul {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  text-align: center;
  padding-top: 2px;
}

.cv-nav ul li {
  padding: 5px 4px;
  font-size: 15px;
}

.cv-nav a {
  text-decoration: none;
  color: black;
  padding: 0;
}

.cv-nav li:hover {
  background-color: #da7400;
}

.header {
  background-color: #da7400;
}

.header h1 {
  padding-top: 10px;
  padding-bottom: 20px;
  background-color: #f58a20;
  padding-left: 15px;
  line-height: 1.1;
  letter-spacing: 5px;
}

.column-left h2 {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
  font-size: 19px;
  background-color: #da7400;
}

.header-h2 {
  background-color: #da7400;
  padding-left: 15px;
  color: white;
  font-size: larger;
  font-weight: lighter;
  letter-spacing: 1px;
}

.my-photo {

  display: block;
  max-width: 100%;

}
.column-left h3 {
  font-family: 'Montserrat', sans-serif;
}


.column-left ul {
  list-style: disc;
  padding-left: 10px;
  padding-top: 10px;
}

.contacts ul {
  list-style: none;

}

.column-left li {
  padding-bottom: 10px;

}

.contacts li img {
  margin-right: 10px;
  vertical-align: middle;
}

.contacts li p {
  display: inline;
  vertical-align: middle;
}

.skills ul {
  padding-left: 30px;
}

.separator {
  height: 20px;
  background-color: #fff;
}

.column-right {
  width: 70%;
  background-color: white;
}

.subtitle {
  margin-top: 30px;
  position: relative;
  padding-left: 80px;
  background-color: #f1f1f1;
}

.subtitle h2 {
  letter-spacing: 2px;
  font-weight: 200;

}

.subtitle ::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 50px;
  height: 30px;
  background-color: #da7400;
}

.subtitle ::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 30px;
  background-color: #bab7b7;
}

.add-info {
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.my-blockquote {
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  margin: 16px 16px 20px 16px;
  padding: 16px 24px;
  font-size: 16px;
  background: #efefef;
  color: #000;
  font-style: italic;
}

a {
  color: #da7400;
}

.footer {
  width: 100%;
  padding: 10px 0 10px 0;
  background-color: #da7400;
  display: flex;
  justify-content: end
}

.date-created {
  line-height: 40px;
  font-size: 30px;
  text-align: center;
  font-weight: bolder;
}

.footer div {
  margin-right: 40px;

}

@media (max-width: 400px) {

  .container {

    max-width: 300px;

    flex-direction: column;
  }

  .column-left {

    width: 100%;
    order: 1;
  }

  .column-left .my-photo {

    display: block;
    margin: auto;
    padding: 5px;
    max-width: 50%;
    border-radius: 100px;
  }

  .column-right {

    width: 100%;
    order: 2;
  }

  .footer {
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: center;
  }


  .footer div {
    margin-bottom: 5px;

  }










}