@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Quicksand:wght@500;700&family=Secular+One&family=Special+Elite&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: white;
}

nav {
  display: flex;
  width: 100%;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px 0px 100px;
  background-color: #1c1d1f;
}
.navtitle {
  color: white;
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 30px;
  cursor: pointer;
}
.checkbtn {
  color: white;
  font-size: 30px;
  float: right;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}
#menuicon {
  transition: 3s;
}
li,
a {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: white;
  letter-spacing: 1px;
  text-decoration: none;
}
.navlinks {
  list-style: none;
}
.navlinks li {
  display: inline-block;
  padding: 0px 10px;
}
.navlinks li a {
  padding: 10px 20px 10px 20px;
  transition: all 0.3s ease 0s;
}
.navlinks li a:hover,
.active {
  color: #ff0081;
  background-color: #fff;
  border-radius: 10px;
}
.navbtn {
  font-family: "Montserrat", sans-serif;
  color: black;
  background-color: white;
  font-weight: bold;
  font-size: 15px;
  padding: 8px 10px;
  border: 0px solid white;
  border-radius: 8px;
  transition: all 0.3s ease 0s;
}
.navbtn:hover {
  cursor: pointer;
  background-color: #ff0081;
  color: white;
}
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sameline {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.button {
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  background-color: #ff0081;
  border: 0;
  color: white;
  border-radius: 10px;
  margin: 20px;
  box-shadow: 0 5px 15px rgba(240, 73, 190, 0.4);
  transition: 1s;
}
.button:hover {
  color: #ff0081;
  background-color: #f8faff;
  transition: 1s;
}
.quote-container {
  display: flex;
  border-radius: 20px;
  position: relative;
}
.innershadow {
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}
.bgimage {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: absolute;
  object-fit: cover;
  z-index: -2;
}
.blackover {
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.65;
  border-radius: 20px;
  position: absolute;
  z-index: -1;
}

.quote {
  font-family: "Special Elite";
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 400;
  font-size: 24px;
  transition: ease-in-out 1s;
  z-index: 0;
  text-align: center;
}

.quote:hover {
  transition: ease-in-out 1s;
  text-shadow: 0 0 7px #fff;
}
.author {
  font-size: 4vh;
  text-align: right;
  margin-top: 10px;
}
.editingtools {
  margin-bottom: 30px;
}
.editingtools .title {
  font-size: larger;
  text-align: center;
  margin: 10px;
}
.Aboutus {
  min-height: calc(100vh - 80px);
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-flow: wrap;
}
.card {
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0px 30px 0px;
  margin: 20px;
  border-radius: 20px;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.card .profilepic {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card .profilepic .dp {
  width: 60%;
  border-radius: 50%;
}
.card .name {
  color: #ff0081;
  font-size: 1.6rem;
  padding-top: 10px;
}
.card .role {
  color: #6c758f;
  padding-bottom: 10px;
  font-size: 1.2rem;
}
.card .social-icon {
  color: #5a6070;
  font-size: 2rem;
}
.social-icon:hover {
  color: #ff0081;
  transition: 0.3s;
}
@media all and (orientation: portrait) {
  .main {
    padding-top: 10px;
  }
  .quote,
  .author {
    font-size: 3vh;
  }
  .quote-container {
    min-height: 95vw;
    width: 95vw;
  }
}
@media all and (orientation: landscape) {
  .main {
    padding-top: 1%;
  }
  .quote-container {
    min-height: 70vh;
    width: 70vh;
  }
}
@media (max-width: 425px) {
  .card .profilepic {
    width: 200px;
  }
  .card .name {
    font-size: 1.2rem;
    padding-top: 10px;
  }
  .card .role {
    padding-bottom: 10px;
    font-size: 0.9rem;
  }
  .card .social-icon {
    font-size: 1.7rem;
  }
}
@media (max-width: 940px) {
  .checkbtn {
    display: block;
  }
  #check:checked ~ ul {
    left: 0;
  }
  nav {
    height: 60px;
    padding: 0px 20px 0px 25px;
  }
  nav ul {
    position: absolute;
    top: 60px;
    left: -100%;
    background-color: rgb(22, 22, 22);
    height: 100vh;
    width: 100%;
    z-index: 99;
    transition: all 0.5s ease;
  }
  .navlinks li {
    display: block;
    text-align: center;
  }
  li,
  a {
    font-size: 25px;
    color: white;
    margin: 40px 0;
  }
  .active {
    color: #ff0081;
  }
}
