@import url(https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;800&display=swap);

body {
  margin: 0;
}

.container > * {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1079px) {
  .container > * {
    padding: 50px 20px;
  }
}

@media only screen and (min-width: 1080px) {
  .container,
  .slider {
    height: 100vh;
    width: 100vw;
  }

  .slider {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
  }

  .container {
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container:nth-child(1),
  .container:nth-child(3) {
    flex-direction: row-reverse;
  }

  .container > * {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
body,
h1 {
  font-family: Poppins, sans-serif;
  color: #333;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: #333;
}

.margin-0 {
  margin: 0;
}

#img {
  background-image: url(https://picsum.photos/1024/720);
  background-size: cover;
  background-repeat: no-repeat;
}

#intro {
  max-width: 400px;
}

.home-content {
  max-width: 550px;
}

.invert > ol {
  list-style-type: inherit;
}

#profile {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#profile > img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  filter: invert(1);
}

#profile ul {
  padding: 0;
  width: 100%;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#profile li {
  display: inline;
}

#profile icons {
  /* filter: invert(1); */
}

h1,
h2,
h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
}

p {
  color: grey;
}

button {
  border: solid #333;
  padding: 10px;
  color: #333;
  background-color: #fff;
  font-weight: 500;
}

button:hover {
  color: #fff;
  background-color: #333;
}

.invert {
  background-color: #ccc;
  filter: invert(1);
}

.flat-list {
  display: flex;
  flex-wrap: wrap;
}

.flat-list-single-item {
  border: solid #333;
  border-radius: 5px;
  padding: 10px;
  margin: 5px;
}

.header {
  height: 100px;
  display: flex;
  max-width: calc(100vw - 200px);
  width: 100%;
  justify-content: space-between;
  background-color: #fff;
  align-items: center;
  /* outline: 1px solid #ccc; */
}

.poppins-bold {
  font-family: Poppins, sans-serif;
  font-weight: 500;
}

.josephins-bold {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
}

.margin-top-100 {
  margin-top: 100px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
