@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap");
@import url("https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css");
@import url("https://use.fontawesome.com/releases/v5.13.1/css/all.css");
body {
  margin: 0;
  padding: 0;
}

#particles-js {
  background: url(../images/cover.jpg);
  height: 100vh;
  background-size: cover;
}

.loader.spinner:before {
  width: 150px;
  height: 150px;
  border-color: #D11E78;
  top: 0px;
  left: 0px;
  animation: rotate .5s reverse 0s infinite;
}

.loader.spinner:after {
  width: 300px;
  height: 300px;
  border-color: #D11E78;
  top: 0px;
  left: 0px;
  opacity: 0;
  animation: rotate .5s linear 0.5s infinite;
}

.loader {
  margin: auto;
  top: 30%;
  position: relative;
  width: 125px;
  height: 125px;
}

.loader:before,
.loader:after {
  content: "";
  display: block;
  position: absolute;
  border-width: 100px;
  border-style: solid;
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(0.3);
    opacity: .5;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

#loadingDiv {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #B6E3E9;
  z-index: 9999999;
}

* {
  box-sizing: border-box;
}

body {
  background: radial-gradient(#FFFFF0, #b6e3e9);
  margin: 0px !important;
  padding: 0px;
  font-size: 20px/1.5;
  font-family: 'Inter', sans-serif;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  text-align: center;
  padding: 2rem 4rem;
}

.header-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 2fr;
}

.header-grid-right {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 2fr;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-gap: 4rem;
}

header .logo {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 700;
  color: #d11e78;
  padding: 2.5em 10em 1em 1em;
}

header nav {
  background: transparent !important;
  text-align: center;
}

a {
  transition: .3s all ease;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  text-decoration: none;
}

nav {
  text-decoration: none;
}

nav ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  text-align: center;
  transition: max-height 0.3s;
}

nav li {
  list-style: none;
  padding: 2.5em 1em 1em;
}

nav a {
  color: #d11e78;
  font-weight: 700;
  opacity: 1;
  text-decoration: none;
  transition: 0.3s all ease;
  background-color: #b6e3e9;
  padding: .5em 2em;
  border-radius: 10em;
}

nav a:hover {
  opacity: 0.3;
  color: #b6e3e9;
  background-color: #d11e78;
}

.wall-items {
  position: absolute;
  width: 100%;
  height: 100vh;
  text-align: center !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
  z-index: 2;
  color: #d11e78;
}

.wall-items h1 {
  font-size: 3em;
}

.wall-items p {
  font-size: 1.4em;
  padding-bottom: 2rem;
}

.display-4 {
  display: flex;
  justify-content: center;
  text-align: center;
}

.carouselSection {
  padding-bottom: 3rem;
  box-shadow: 10px 10px 8px #b6e3e9;
}

.project {
  padding: 13%;
  text-align: center;
}

.project .img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.project .img img {
  width: 100%;
}

.project .description {
  padding-top: 2rem;
}

.project .description h2 {
  color: #d11e78;
}

.project .description .fas {
  color: #d11e78;
}

.project .description p {
  color: #d11e78;
}

.button {
  background-color: #d11e78;
  font-size: 700;
  transition: .3 all ease;
  padding: 20px 60px;
  margin-top: 1em;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #fff;
  border: 1px solid #d11e78;
  border-radius: 10em;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
}

button {
  margin-top: 0 !important;
}

.button:hover {
  color: #d11e78;
  background-color: #b6e3e9;
}

#toggle {
  display: none;
}

.label {
  font-size: 26px;
  line-height: 70px;
  width: 30px;
  color: #d11e78;
  display: none;
}

.label-color {
  color: #d11e78;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 40px;
}

.resume {
  width: 100%;
  height: 100%;
  padding-top: 15em;
  padding-bottom: 10em;
  text-align: center;
}

.about-me {
  width: 100%;
  height: 100%;
  padding-top: 5em;
  padding-bottom: 10em;
  text-align: center;
}

img {
  box-shadow: 15px 15px 50px #b6e3e9;
  border: 1px solid #b6e3e9;
}

.panels {
  margin: 20px;
}

.main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 15px;
}

.tiles img {
  width: 100%;
  padding: 1rem;
}

.tiles {
  padding: 2rem;
  text-align: center;
  color: #d11e78;
  box-shadow: 8px 8px 8px #b6e3e9;
  border: 1.5px solid #b6e3e9;
}

.tiles h4 {
  padding-top: 1rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

footer {
  margin: 20px;
  padding: 1rem;
  text-align: center;
  color: #d11e78;
  border: 3px solid #b6e3e9;
  background-color: radial-gradient(#FFFFF0, #b6e3e9);
}

.footer {
  text-align: center;
  flex: 1;
}

.footer a {
  color: #d11e78;
  font-size: 20px;
}

.footer a:hover {
  opacity: 1;
  color: #b6e3e9;
}

.footer-grid {
  display: flex;
}

.sub-heading {
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  color: #d11e78;
  letter-spacing: .1em;
}

.footer-links {
  text-align: center;
  margin-bottom: 3em;
  flex: 1;
}

.footer-links a {
  color: #d11e78;
  padding-right: 1rem;
  padding-left: 1rem;
}

.footer-links a:hover {
  opacity: 1;
  color: #b6e3e9;
}

.links {
  color: #d11e78;
  padding-right: 1rem;
  padding-left: 1rem;
}

.heading {
  color: #d11e78;
  font-weight: 500;
  font-size: 50px;
  font-family: 'Inter', sans-serif;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

.main-padding {
  text-align: center;
  padding-bottom: 2em;
}

.container {
  text-align: center;
  padding-bottom: 8rem;
}

.box {
  box-shadow: 15px 15px 50px #b6e3e9;
  border: 1px solid #b6e3e9;
}

.contactform {
  width: 60%;
  padding-bottom: 4em;
  margin: auto;
}

.contactform input[type="text"] {
  display: block;
  width: 100%;
  padding: .5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #FFFFF0;
  background-clip: padding-box;
  border: 3px solid #b6e3e9;
  border-radius: 10rem;
}

.contactform input[type="email"] {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #FFFFF0;
  background-clip: padding-box;
  border: 3px solid #b6e3e9;
  border-radius: 10rem;
}

.contactform textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #FFFFF0;
  background-clip: padding-box;
  border: 3px solid #b6e3e9;
  border-radius: 1rem;
}

.container-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  justify-items: center;
  grid-gap: 20px;
  margin: 0.2em 2em 0.2em 2em;
}

.pic > a > img {
  width: 100%;
  width: 100%;
}

.pic > a > img:hover {
  filter: blur(2px) brightness(90%);
  box-shadow: 0 10px 25px #b6e3e9, 0 5px 5px #b6e3e9;
  cursor: pointer;
}

.pic > img {
  width: 100%;
  height: 100%;
}

.pic > img:hover {
  box-shadow: 0 8px 16px #b6e3e9, 0 5px 5px #b6e3e9;
  cursor: pointer;
  filter: blur(2px) brightness(90%);
}

@media (max-width: 992px) {
  .label {
    display: block;
    cursor: pointer;
  }
  nav {
    padding-bottom: 5rem;
  }
  nav ul {
    text-align: center;
    grid-template-columns: 1fr;
    justify-content: center;
    margin: 0 auto;
    top: 6em;
    width: 80%;
    left: 10%;
    position: absolute;
    background-color: #b6e3e9;
    max-height: 0;
    overflow: hidden;
  }
  nav a {
    opacity: 1;
  }
  #toggle:checked + .menu {
    max-height: 500px;
    border: 3px solid #FFFFF0;
    box-shadow: 5px 5px 5px #b6e3e9;
  }
  header > div .logo {
    float: left;
    padding: 1em 0.5em 0.5em 0.5em;
  }
  .footer {
    text-align: center;
    grid-template-rows: auto;
    padding-bottom: 2.5rem;
  }
  .footer a {
    color: #d11e78;
    font-size: 20px;
  }
  .footer a:hover {
    opacity: 1;
    color: #b6e3e9;
  }
  .footer-grid {
    display: grid;
  }
}
