@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,500&display=swap");
@media (min-width: 640px) {
  .top-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 100px;
    gap: 30px;
  }
  .top-section header {
    margin: 0;
  }

  .top-bar {
    display: none;
  }

  .cv a {
    background-color: black;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    padding: 20px;
    border-radius: 1000px;
    transition-duration: 0.5s;
    width: 135px;
  }
  .cv a img {
    display: none;
    -webkit-animation: appear 0.5s;
            animation: appear 0.5s;
    animation-direction: reverse;
  }
  .cv a .show {
    display: block;
    -webkit-animation: appear 0.5s;
            animation: appear 0.5s;
  }
  .cv .hover {
    width: 170px;
  }

  .purple-divider {
    display: block;
    width: 100vw;
    margin: 100px 0;
  }

  .socials .column {
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
  }
  .socials .column:hover {
    opacity: 1;
  }

  footer .footer-content {
    flex-direction: row;
    align-items: center;
    gap: 100px;
  }
  footer .footer-content .footer-socials,
footer .footer-content p {
    margin: 0;
  }
  footer .footer-content a:hover {
    color: white;
  }
}
html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: #f8f8f8;
}

.top-bar {
  width: 100vw;
  height: 100%;
}

h1 {
  font-size: 56px;
  font-weight: 700;
}

p {
  font-size: 22px;
  font-weight: 400;
  line-height: 86%;
  margin: 12px 0;
}

.small-text {
  font-size: 18px !important;
}

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

.column {
  flex-direction: column;
  gap: 5px;
}

.icon {
  height: 25px;
}

.divider {
  width: 100vw;
  margin: 70px 0;
}

header {
  margin: 30px 30px 0;
}
header p:first-child,
header p:last-child {
  margin: 0;
}
header h1 {
  margin: 15px 0;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 1;
    display: block;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
.cv {
  height: 200px;
}
.cv a {
  background-color: black;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  padding: 20px;
  border-radius: 1000px;
  transition-duration: 0.5s;
}
.cv a img {
  height: 22px;
}

.socials {
  margin-top: 40px;
  gap: 100px;
}
.socials a {
  color: unset;
  text-decoration: none;
}
.socials p {
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0;
}

.thanks {
  width: 250px;
  margin-bottom: 80px;
}

footer {
  color: white;
  background-color: black;
}
footer p {
  font-size: 16px;
}
footer .footer-content {
  padding: 50px 20px;
}
footer .footer-socials {
  margin-top: 20px;
  gap: 50px;
}
footer .footer-socials img {
  height: 28px;
}

@media (max-width: 639px) {
  .purple-divider {
    display: none;
  }

  .socials a {
    background-image: url("./Mobile/background buttons.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}/*# sourceMappingURL=style.css.map */