@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap");
:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
}

html, body {
  height: 100%;
  background-color: white;
  scroll-behavior: smooth;
}

header {
  background-color: black;
  padding-top: 0.5%;
  padding-bottom: 0%;
  width: 100%;
  height: 10%;
  font-family: var(--font-sans);
}

header a:hover {
  color: white;
  text-decoration: none;
}

header a:hover span {
  display: none;
}

header a.logo:hover::before {
  content: "   ;   ";
}

.header-right {
  float: right;
  padding-top: 0.6%;
  padding-right: 1%;
}

.header-right a:hover {
  font-size: large;
  color: white;
  text-decoration: none;
}

.logo {
  font-size: xx-large;
  color: white;
  padding-top: 0%;
  padding-left: 1%;
}

.link {
  color: white;
  padding-left: 10px;
}

.intro {
  background-color: black;
  padding-top: 12%;
  height: 100%;
  width: 100%;
  color: white;
}

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

.text {
  font-weight: 100;
  font-size: 75px;
  color: white;
}

.dud {
  color: #fff;
}

.text:hover::before {
  background: url("../assets/milky-way-2881461.jpg");
}

#dots-1 {
  position: absolute;
  top: 20%;
  left: 50%;
  margin-top: -95px;
  margin-left: -375px;
}

#dots-2 {
  position: absolute;
  top: 45%;
  left: 50%;
  margin-top: -95px;
  margin-left: -375px;
}

#rose {
  position: absolute;
  top: 70%;
  left: 50%;
  margin-top: -95px;
  margin-left: -375px;
}

#scroll a {
  padding-top: 80px;
}

#scroll a span {
  position: absolute;
  top: 50%;
  left: 90%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  animation: scr 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

#scroll a span:nth-of-type(1) {
  animation-delay: 0s;
}

#scroll a span:nth-of-type(2) {
  top: 51%;
  animation-delay: 0.15s;
}

#scroll a span:nth-of-type(3) {
  top: 52%;
  animation-delay: 0.3s;
}
@keyframes scr {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.about {
  text-align: center;
  background-color: white;
  padding-top: 2%;
  height: 100%;
  font-family: var(--font-sans);
}

.about-text {
  float: left;
  position: relative;
}

.about h5 {
  text-align: left;
  margin-top: 2%;
  margin-left: 15%;
  margin-right: 40%;
}

.showcase {
  position: absolute;
  float: left;
  background-color: transparent;
  top: 120%;
  left: 67%;
  width: 15vw;
  height: 17vw;
  z-index: 3;
}

.profile {
  width: 350px;
  height: 400px;
}

.back-showcase {
  position: absolute;
  float: left;
  top: 122%;
  left: 69%;
  width: 350px;
  height: 400px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 200% 200%;
  animation: gradient 10s ease infinite;
  z-index: 2;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section-1 {
  text-align: center;
  font-family: var(--font-sans);
}

.section-2 {
  padding-top: 1%;
  text-align: center;
  font-family: var(--font-sans);
  background-color: black;
  color: white;
  width: 100%;
  height: 100%;
}

.page-content-projects {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: var(--font-sans);
  padding-bottom: 10%;
}

@media (min-width: 600px) {
  .page-content-projects {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 800px) {
  .page-content-projects {
    grid-template-columns: repeat(1, 1fr); /* Changes number of items per row*/
  }
  /* Project Pictures */
}
@media (min-width: 800px) and (min-width: 1024px) {
  .page-content-projects {
    padding-bottom: 0%;
  }
}
@media (min-width: 800px) {
  .card-projects {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
    text-align: center;
    color: whitesmoke;
    background-color: whitesmoke;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 800px) and (min-width: 600px) {
  .card-projects {
    height: 130%;
    width: 60%;
    left: 20%;
  }
}
@media (min-width: 800px) {
  .card-projects:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(var(--d) * 1.5) var(--e);
    pointer-events: none;
  }
  .card-projects:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
  }
  .card-projects:nth-child(1):before {
    background-image: url("../assets/acl23_preview.png");
    width: 100%;
    height: 80%;
  }
  .card-projects:nth-child(2):before {
    background-image: url("../assets/general-gpt-logo.png");
    left: 10%;
    width: 80%;
    height: 105%;
  }
  .content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 7%;
    width: 100%;
    padding: 1rem;
    transition: transform var(--d) var(--e);
    z-index: 1;
  }
  .content > * + * {
    margin-top: 1rem;
  }
  .title {
    margin-top: 2%;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 0.1;
  }
  .timeframe {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 0.2;
    margin-bottom: 0.02rem;
  }
  .btn {
    cursor: pointer;
    margin-bottom: 2%;
    padding: 0.75rem 1.5rem;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    color: white;
    background-color: black;
    border: none;
  }
  .btn:hover {
    background-color: #0d0d0d;
  }
  .btn:focus {
    outline: 1px dashed yellow;
    outline-offset: 3px;
  }
}
@media (min-width: 800px) and (hover: hover) and (min-width: 600px) {
  .card-projects:after {
    transform: translateY(0);
  }
  .content {
    transform: translateY(calc(100% - 4.5rem));
  }
  .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }
  .card-projects:hover,
  .card-projects:focus-within {
    align-items: center;
  }
  .card-projects:hover:before,
  .card-projects:focus-within:before {
    transform: translateY(-4%);
  }
  .card-projects:hover:after,
  .card-projects:focus-within:after {
    transform: translateY(-50%);
  }
  .card-projects:hover .content,
  .card-projects:focus-within .content {
    transform: translateY(0);
  }
  .card-projects:hover .content > *:not(.title),
  .card-projects:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }
  .card-projects:focus-within:before, .card-projects:focus-within:after,
  .card-projects:focus-within .content,
  .card-projects:focus-within .content > *:not(.title) {
    transition-duration: 0s;
  }
}/*# sourceMappingURL=main.css.map */