@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:100,200,300,400,500,600,700,800,900|Barlow+Semi+Condensed:100,200,300,400,500,600,700,800,900|Barlow:100,200,300,400,500,600,700,800,900&display=swap");
.about {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}
.about .bg_links {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}
.about .logo {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/logo_white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}
.about .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}
.about .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}
.about .social.portfolio {
  transition: all 0.8s ease;
}
.about .social.portfolio .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/link.svg);
}
.about .social.dribbble {
  transition: all 0.3s ease;
}
.about .social.dribbble .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/dribbble.svg);
}
.about .social.linkedin {
  transition: all 0.8s ease;
}
.about .social.linkedin .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/linkedin.svg);
}
.about:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}
.about:hover .social {
  opacity: 1;
}
.about:hover .social .icon {
  opacity: 0.9;
}
.about:hover .social:hover {
  background-size: 28px;
}
.about:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}
.about:hover .social.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.portfolio .icon:hover {
  background-color: #698fb7;
}
.about:hover .social.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.dribbble .icon:hover {
  background-color: #ea4c89;
}
.about:hover .social.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.linkedin .icon:hover {
  background-color: #0077b5;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
*:focus {
  outline: 0;
}
* input::-webkit-outer-spin-button,
* input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body {
  background-color: #F5F5F5;
  font-family: "Barlow", sans-serif;
  font-weight: normal;
  transition: all 0.4s ease;
  background-image: url(./pexels-photo-1002778.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
}

.logo {
  position: fixed;
  z-index: 5;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  backdrop-filter: blur(5px);
}
.logo img {
  width: 55%;
  height: 55%;
  transform: translateY(-1px);
  opacity: 0.8;
}
@media screen and (max-width: 799px) {
  .logo {
    display: none;
  }
}

.wrapper {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  font-family: "Barlow", sans-serif;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.wrapper:before, .wrapper:after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background-color: #6A6A6A;
  opacity: 0.5;
  top: 0;
  left: 0;
}
.wrapper:after {
  background-color: #ff9900;
  opacity: 0.75;
}
@media screen and (max-width: 512px) {
  .wrapper {
    min-height: 500px;
  }
}

.pageLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-top: 100px;
}
@media screen and (max-width: 799px) {
  .pageLogo {
    margin-top: 60px;
  }
}
@media screen and (max-width: 512px) {
  .pageLogo {
    margin-top: 40px;
  }
  .pageLogo img {
    width: 200px;
  }
}

.timer {
  z-index: 1;
  color: white;
  transform: translateY(-40px);
  user-select: none;
}
@media screen and (max-width: 512px) {
  .timer {
    transform: translateY(-10px);
  }
}
.timer__content {
  display: flex;
}
.timer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  animation: item 0.6s ease backwards;
  position: relative;
  transition: all 1s 0.2s ease;
}
.timer__item:hover {
  transition: all 0.3s ease;
  transform: translateY(-20px);
}
@media screen and (max-width: 799px) {
  .timer__item:hover {
    transform: translateY(0px);
  }
}
.timer__item:nth-child(1) {
  animation-delay: 0.2s;
}
.timer__item:nth-child(2) {
  animation-delay: 0.4s;
}
.timer__item:nth-child(3) {
  animation-delay: 0.6s;
}
.timer__item:nth-child(4) {
  animation-delay: 0.8s;
}
@keyframes item {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
}
.timer__item:before {
  width: calc(100% - 20px);
  height: 120px;
  content: "";
  position: absolute;
  bottom: 0;
  backdrop-filter: blur(5px);
  z-index: -1;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 799px) {
  .timer__item:before {
    height: 80px;
  }
}
@media screen and (max-width: 512px) {
  .timer__item:before {
    width: calc(100% - 10px);
    height: 60px;
    border-radius: 5px;
  }
}
.timer__name {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: "Barlow Semi Condensed", sans-serif;
}
@media screen and (max-width: 799px) {
  .timer__name {
    font-size: 14px;
  }
}
.timer__number {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 60px;
  text-align: center;
  letter-spacing: 2px;
  animation: number 0.4s 1.4s ease backwards;
}
@media screen and (max-width: 799px) {
  .timer__number {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}
@media screen and (max-width: 512px) {
  .timer__number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}
@keyframes number {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
}
.timer__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.3em;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 799px) {
  .timer__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 512px) {
  .timer__text {
    margin-top: 30px;
  }
}

.footer {
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  z-index: 1;
  backdrop-filter: blur(5px);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.footer__social {
  display: flex;
  align-items: center;
}
.footer__social img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  margin-left: 30px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.footer__social img:first-child {
  margin-left: 0px;
}
.footer__social img:hover {
  opacity: 1;
}
@media screen and (max-width: 799px) {
  .footer {
    flex-direction: column;
    height: 100px;
    padding: 20px 40px;
  }
}