.marginBotton8 {
  margin-bottom: 8px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
body {
  background-color: #f59963;
  color: #f5f6fa;
}
@media (max-width: 767px) {
  body {
    background-image: url(../images/back.jpg);
    background-position: center bottom ;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 220px;
  }
}
li {
  list-style: none;
}
.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .container {
    max-width: 70%;
  }
  .container .profile-avatar {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 80%;
  }
}
header {
  padding-bottom: 24px;
}
header .profile-avatar {
  display: block;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid #C436E3;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.profile-bio {
  text-align: center;
}
.profile-bio-name {
  font-size: 16px;
  margin-bottom: 8px;
}
.profile-bio-subtitle {
  font-size: 14px;
  margin-bottom: 8px;
}
.profile-bio-description {
  font-size: 14px;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .profile-bio-name {
    font-size: 32px;
    font-family: "Playwrite NZ", cursive;
    margin-bottom: 8px;
  }
}
.projects-list {
  margin-top: 32px;
}
.projects-list-item a {
  text-decoration: none;
  background-color: #C436E3;
  display: block;
  padding: 16px 20px;
  margin-bottom: 16px;
  text-align: center;
  color: #f5f6fa;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #C436E3;
  transition: all ease 0.3s;
}
.projects-list-item a:hover {
  color: #C436E3;
  background-color: transparent;
}

.snowflakes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.snowflake {
  position: absolute;
  top: -10%;
  color: white;
  font-size: 1.5em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  animation: fall linear infinite;
}

@keyframes fall {
  to {
      transform: translateY(100vh);
  }
}

.snowflake:nth-child(1) {
  left: 10%;
  animation-duration: 10s;
  animation-delay: 0s;
}

.snowflake:nth-child(2) {
  left: 20%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.snowflake:nth-child(3) {
  left: 30%;
  animation-duration: 8s;
  animation-delay: 4s;
}

.snowflake:nth-child(4) {
  left: 40%;
  animation-duration: 14s;
  animation-delay: 6s;
}

.snowflake:nth-child(5) {
  left: 50%;
  animation-duration: 10s;
  animation-delay: 8s;
}

.snowflake:nth-child(6) {
  left: 60%;
  animation-duration: 12s;
  animation-delay: 10s;
}

.snowflake:nth-child(7) {
  left: 70%;
  animation-duration: 8s;
  animation-delay: 12s;
}

.snowflake:nth-child(8) {
  left: 80%;
  animation-duration: 14s;
  animation-delay: 14s;
}

.snowflake:nth-child(9) {
  left: 90%;
  animation-duration: 10s;
  animation-delay: 16s;
}