*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
}

section {
  min-height: calc(80vh - 68px);
  padding: 65px 25px;
}

p {
  margin-bottom: 2vh;
}

ul {

}

li {
  list-style-type: none;
  margin: 0 0 .75rem 0;
}

li > a {
  text-decoration: none;
}

.responsive-img {
  display: block;
  width: 100%;
}

.row {
  display: flex;
  flex-direction: column;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  background: ivory;
}

.header .logo {
  width: 150px;
}

/* NAVBAR: MAIN */
.navbar {
  display: flex;
  align-items: center;
}

.navbar .navbar__items {
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: #D81B60;
}

.navbar .navbar__items:hover {
  border-bottom: 2px solid rgb(238, 98, 122);
}

.masthead {
  display: flex;
  background-color: #F06292;
}

.masthead .masthead__content {
  align-self: flex-end;
  color: white;
}

.title {
  font-family: 'Montserrat', sans-serif;
  padding-bottom: 1.5rem;
}

.content__area {
  margin-top: 30px;
}

/* ABOUT ME */
.about-me {
  background-color: #F48FB1;
}
.about {
  display: flex;
  flex-wrap: wrap;
  background-color: #F48FB1;
}

/* Code list */
.code__list-item::before {
  content: '🤓';
  display: inline-block;
  margin-right: 5px;
}

.code__list-item a,
.code__list-item a:visited {
  color: azure;
}

.code__list-item a:hover {
  color: #E91E63;
}

/* FOOTER */
.footer {
  background-color: #F8BBD0;
  color: #fff;
  padding: 2rem;
  display: grid;
}

.footer a {
  font-weight: 700;
  color: #fff;
}

.footer small {
  justify-self: center;
}

.footer .top {
  justify-self: center;
  margin-top: 1rem;
}



@media screen and (min-width: 900px) {
  .masthead .masthead__content {
    align-self: center;
  }

  .content__area {
    padding: 6rem 2rem;
  }

  .row {
    flex-direction: row;
  }

  .about .row .col:first-child {
    width: 40%;
  }

  .about .row .col:last-child {
    width: 60%;
    padding: 0 3vw;
  }

  .footer .top {
    justify-self: flex-end;
  }
}

.strike {
  text-decoration: line-through;
}