@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");

html {
  font-family: "Raleway", sans-serif;
}

.nav-wrapper {
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.nav-logo {
  transition: all 0.1s ease-out;
  width: 170px;
  height: 32px;
}

.nav-link {
  text-decoration: none;
  text-align: center;
  font-size: 28px;
  color: black;
}

.nav-active {
  color: #002fd6;
}

#hamburgerButton {
  opacity: 100%;
}

#navAbout {
  width: 100%;
  transition: all 0.2s ease-out;
}
#navContact {
  transition: all 0.2s ease-out;
  transition-delay: 0.2s;
  width: 100%;
}

.nav-hide {
  display: none;
  height: 0;
  opacity: 0;
}

body {
  text-align: center;
}

.back-drop {
  margin-top: 25px;
  width: 80%;
  text-align: center;

}


.chip {
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
  background-color: white;
  color: black;
  border: 2px solid black;
  border-radius: 25px;
  font-family: "Raleway", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 30%;
  margin-inline: auto;
  margin-block: 20px;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
}

.chip:hover {
  color: white;
  background-color: #002ed673;
}

.sub-heading {
  margin-block: 20px;
  font-size: 24px;
  margin-inline: 1%;
  font-weight: 600;
}

.company {
  width: 100%;
  height: 5%;
}

.scroll-button {
  border: none;
  background-color: white;

}

.scroll-icon {
  height: 50px;
  transition: all 0.1s ease-out;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
}

.card {
  border-top: solid 3px rgba(128, 128, 128, 0.422);
  text-align: center;

  margin-block: 30px;
  margin-inline: 50px;
}

.card-header {
  font-size: 24px;
  font-weight: 600;
}
.card-content {
  font-size: 18px;
  font-weight: 400;
}

.presented-work {
  width: 100%;
  overflow-x: scroll;
}

.text-input {
  height: 50px;
  width: 90%;
  border: solid 3px black;
  border-radius: 5px;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  padding-inline: 10px;
  margin-bottom: 30px;
}
.text-input:focus {
  outline: none !important;
  border-color: #002fd6;
}

.text-input-multiline {
  width: 90%;
  border: solid 3px black;
  border-radius: 5px;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  padding-inline: 10px;
  padding-block: 10px;
  margin-bottom: 30px;
}

.text-input-multiline:focus {
  outline: none !important;
  border-color: #002fd6;
}

.btn {
  font-family: "Raleway", sans-serif;
  height: 50px;
  width: 100%;
  font-size: 20px;
  text-align: center;
  color: black;
  background-color: white;
  border: solid 3px black;
  border-radius: 5px;
}

footer {
  border-top: solid 3px rgba(128, 128, 128, 0.422);
  padding-block: 30px;
}

.footer-link {
  color: black;
  width: 100%;
  text-decoration: none;
}

.footer-icon {
  height: 75px;
  margin-block: 10px;
  transition: all 0.1s ease-out;
}
