html {
  /* body won't work ¯\_(ツ)_/¯ */
  scroll-snap-type: y mandatory;
}

body {
  background-color: #9de2ea;
}

section {
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
}

svg {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.out-top {
  animation: rotate 20s linear infinite;
  transform-origin: 13px 25px;
}
.in-top {
  animation: rotate 10s linear infinite;
  transform-origin: 13px 25px;
}
.out-bottom {
  animation: rotate 25s linear infinite;
  transform-origin: 84px 93px;
}
.in-bottom {
  animation: rotate 15s linear infinite;
  transform-origin: 84px 93px;
}

#introHeader {
  height: 100vh;
}

.centeredSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.centeredExperienceSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.centeredSection p {
  text-align: center;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #000000;
}

.centeredExperienceSection p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #000000;
  height: 80vh;
}

/* Default style */
.paddedContainer {
  padding-left: 15%;
  padding-right: 15%;
}

/* When the viewport is 800px or less, decrease padding */
@media (max-width: 800px) {
  .paddedContainer {
    padding-left: 5%;
    padding-right: 5%;
  }
}

a {
  text-decoration: none;
  color: black;
  margin-left: 1em;
}

#navBar {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 10px;
}

.navbar a {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0px;
  font-size: 16px;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  letter-spacing: 1px;
}

p {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  line-height: 25px;
}

.titles {
  letter-spacing: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #000000;
}

/* When the viewport is 800px or less, decrease padding */
@media (max-width: 800px) {
  .titles {
    display: flex;
    flex-direction: column;
  }
  .hideBreaks {
    display: none;
  }
}

.frost {
  backdrop-filter: blur(40px);
}

h2 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 6px;
}

#projects h2 {
  font-size: 6vw;
}

@media (min-width: 900px) {
  #projects h2 {
    font-size: 5vw;
  }
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
}

.bg-black {
  background-color: black;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe {
  left: 15%;
  top: 10%;
  height: 70%;
  width: 70%;
  position: absolute;
}

.video-responsive-mobile iframe {
  left: 5%;
  top: 5%;
  width: 90%;
  position: relative;
}

#projects {
  height: fit-content;
}

.experienceLocationContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

/* When the viewport is 900px or less, decrease padding */
@media (max-width: 900px) {
  .experienceLocationContainer {
    display: none;
  }
}

.experienceLocationContainerMobile {
  display: none;
}

/* When the viewport is 900px or less, decrease padding */
@media (max-width: 900px) {
  .experienceLocationContainerMobile {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  #education {
    display: none;
  }
}

@media (max-width: 1000px) {
  #carousel-section {
    display: none;
  }
}

.mobileProjectDisplay {
  display: none;
}

@media (max-width: 1000px) {
  .mobileProjectDisplay {
    display: block;
  }
}

.educationContainer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#educationMobile {
  display: none;
}

/* When the viewport is 900px or less, decrease padding */
@media (max-width: 900px) {
  #educationMobile {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
}

.customH3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -1px;
}

/* When the viewport is 900px or less, decrease padding */
@media (max-width: 900px) {
  .contact {
    display: none;
  }
}

.contactMobile {
  display: none;
}

@media (max-width: 900px) {
  .contactMobile {
    display: block;
  }
}

.contactContainer {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.contactContainerMobile {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.contactColumns {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contactColumns div {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 20px;
}

.contactColumns img {
  border-radius: 1000px;
}
