* {
  margin: 0px;
  padding: 0px;
  font-family: Inter, sans-serif;
}

body {
  background: #f4f4f4;
  font-family: sans-serif;
  margin: 0;
  padding: 40px;
}

@media screen and (max-width: 600px) {
  body {
    padding: 30px 20px;
  }
}

h2 {
  margin-bottom: 20px;
}
h3 {
  margin-top: 30px;
  margin-bottom: 8px;
}

p {
  margin-top: 20px;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: red;
}
a:visited {
  color: red;
}

ul {
  margin-left: 30px;
}

.container {
  max-width: 800px;
  /* overflow: hidden; */
  margin: 20px auto;
  background-color: white;
  padding: 60px;
  border-radius: 30px;
}

@media screen and (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }
}

.profile-cols {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .profile-cols {
    display: block;
  }
}

.profile-picture {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid white;
  margin: 35px 10px 35px 0px;
  overflow: hidden;
  position: relative;
}
.profile-picture img {
  width: 100%;
  height: auto;
  position: absolute;
  top: -10px;
}
.profile-details {
  padding: 35px;
}
@media screen and (max-width: 600px ){
  .profile-details {
    padding: 0px;
  }
}

.project-blocks {
  /* display: flex; */
  gap: 20px;
}

.project {
  padding: 30px;
  background-color: white;
  width: 200px;
  border: 1px dashed red;
  border-radius: 15px;
  background-color: rgb(255, 227, 227);
}
.project:hover {
  background-color: #ffbcbc;
}

.timeline-block {
  display: flex;
  border-left: 5px solid red;
  max-width: 700px;
}

.timeline-future {
  border-left: 5px solid #ffbcbc;
}

.timeline-tick > h4 {
  margin: 0px;
}

.timeline-future-tick > h4 {
  margin: 0px;
}

p.timeline-item {
  margin: 0;
  margin-right: 10px;
  padding: 0;
}

.timeline-tick {
  position: relative;
  padding: 30px 0 30px 25px;
  min-height: 40px;
}

.timeline-future-tick {
  position: relative;
  padding: 30px 0 30px 25px;
  min-height: 40px;
}

.timeline-tick::before {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: red;
}

.timeline-future-tick::before {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #ffbcbc;
}

.timeline-heading {
  font-weight: 700;
}
.timeline-date {
  color: #9b9b9b;
  font-size: 0.9rem;
  margin: 5px 0 5px 0;
}