* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

body {
  transition: background-color 10s ease-in-out;
  background: #8eb9ff;
}

.night {
  background: #155fbb;
}

.dawn {
  background: #3882db;
}

.morning {
  background: #a9caff;
}

.afternoon {
  background: #8eb9ff;
}

.sunrise {
  background: linear-gradient(#a9caff, #ffdf66);
}

.evening {
  background: linear-gradient(#8eb9ff, #6ba6ff);
}

.sunset {
  background: linear-gradient(#6ba6ff, #ff6a98);
}

.header {
  padding: 24px 24px 16px;
}
.header__title {
  text-align: center;
  margin-bottom: 16px;
}
.header__nav {
  justify-self: center;
}
.header__nav-list {
  display: flex;
  gap: 4px;
}
.header__nav-item {
  list-style: none;
}
.header__nav-link {
  padding: 4px 12px;
}

.about {
  padding: 40px 24px;
}
.about__heading {
  text-align: center;
  margin-bottom: 24px;
}
.about__heading--night {
  text-align: center;
  margin-bottom: 24px;
  color: aliceblue;
}
.about__flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .about__flex {
    flex-direction: column-reverse;
  }
}
.about__description {
  flex: 1;
}
.about__text {
  line-height: 1.6;
  margin-bottom: 16px;
}
.about__text--night {
  line-height: 1.6;
  margin-bottom: 16px;
  color: aliceblue;
}
.about__text:last-child {
  margin-bottom: 0;
}
.about__figure {
  width: 280px;
}
@media (max-width: 900px) {
  .about__figure {
    width: 100%;
    max-width: 300px;
    align-self: center;
  }
}
.about__img {
  width: 100%;
  height: auto;
  border-radius: 150px 150px 5px 5px;
}

.projects {
  padding: 0 24px 40px;
  max-width: 2000px;
  justify-self: center;
}
.projects__heading {
  text-align: center;
  margin-bottom: 24px;
}
.projects__heading--night {
  text-align: center;
  margin-bottom: 24px;
  color: aliceblue;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .projects__grid {
    grid-template-columns: 1fr;
  }
}

.card {
  display: flex;
  flex-direction: row;
  min-height: 180px;
  overflow: hidden;
  /* Glassmorphism card effect was generated by https://generator.ui.glass/ */
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(200%);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}
.card__info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.card__description {
  line-height: 1.5;
}
.card__links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.card__thumbnail {
  width: 30%;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .card__thumbnail {
    width: 100%;
    height: 230px;
  }
}
.card__image {
  width: 100%;
  height: 100%;
  padding-right: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 900px) {
  .card__image {
    margin: 0.5rem auto 0.5rem auto;
    display: block;
    max-width: 300px;
    max-height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media (max-width: 900px) {
  .card {
    flex-direction: column-reverse;
    margin: 0 5% 0 5%;
    justify-self: center;
  }
}/*# sourceMappingURL=style.css.map */