@charset "UTF-8";
:root {
  --bg-color: #fdfdfd;
  --text-color: #1a1a1a;
  --accent-color: #161615;
  --font-body: "Helvetica Neue", sans-serif;
}

/* #FCEAC5 
 #fdf4eb
  --accent-color: #e35b00;
  "Helvetica Neue", "Montserrat"

*/
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: #1a1a1a;
  /*   font-size: 1rem;
  font-weight: 400; */
  transition: color 0.3s ease-in-out;
}

a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

hr {
  border: 1px solid #e35b00;
  margin: 0 auto;
  max-width: 1110px;
  flex-grow: 1;
}

.p {
  font-size: 1rem;
  font-weight: 300;
  margin-top: 5px;
}

.header {
  padding: 2rem;
}
.header__content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__title {
  /*   font-size: 1.5rem;
  font-weight: 100; */
  margin-bottom: 2rem;
  color: #e35b00;
}
.header__title a {
  text-decoration: none;
  color: #e35b00;
}
.header__nav {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}
.header__link {
  margin-top: 0.5rem;
}
.header__CVbtn {
  color: white;
  background-color: #e35b00;
  border: solid 1px #e35b00;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.header__CVbtn:hover {
  transform: scale(1.05);
  color: #e35b00;
  background-color: #fff;
}
.header__CVbtn.active {
  color: #e35b00;
  background-color: #fff;
}

main {
  max-width: 1050px;
  margin: 0 auto;
  padding: 2rem;
}

.skills {
  /*   &__list-container {
    padding: none;
  }*/
}
.skills__line-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.skills__wrapper {
  display: flex;
  justify-content: space-between;
}
.skills__container {
  padding: 2rem;
}
.skills__list-item {
  line-height: 2rem;
  list-style-type: "✱ ";
  margin-left: -1.3rem;
}

.work {
  margin-top: 1rem;
}
.work__line-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.work__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.work__casestudy {
  flex: 1 1 calc(30% - 2rem);
  overflow: hidden;
}
.work__casestudy-img {
  width: 100%;
  height: 15rem;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.work__img-coffee, .work__img-microsoft, .work__img {
  width: 100%;
  height: 15rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.work__img-coffee {
  -o-object-position: 5% center;
     object-position: 5% center;
}
.work__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.contact {
  margin-top: 4rem;
}
.contact__line-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.contact__title {
  white-space: nowrap;
  margin-bottom: 0rem;
}
.contact__icon-img {
  margin-top: 1rem;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  transition: fill 0.3s ease, transform 0.3s ease;
}
.contact__icon-img:hover {
  transform: translateY(-10px);
}
.contact__icon-img-github {
  margin-top: 1rem;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(8px);
  transition: fill 0.3s ease, transform 0.3s ease;
}
.contact__icon-img-github:hover {
  transform: translateY(6px);
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
  color: #888;
}/*# sourceMappingURL=swe.css.map */