@font-face {
  src: url(/Fonts/Lato/Lato-Light.ttf);
  font-family: latothin;
}

@font-face {
  src: url(/Fonts/Lato/Lato-Bold.woff);
  font-family: latobold;
}

@font-face {
  src: url(/Fonts/Helvetica/helvetica-rounded-bold-5871d05ead8de.otf);
  font-family: helround;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.about-head {
  font-family: helround;
  font-size: 35px;
}

.topdiv {
  background-color: grey;
  /* background-image: url("/images/aboutme.jpg"); */
  text-align: center;
  /* height: 50vh; */
  font-family: latothin;
  color: white;
}

.new-aboutbg {
  background-image: url("/images/aboutme.jpg");
  object-fit: cover;
  background-size: cover;
  height: 50vh;
  /* z-index: 100; */
}

.navbar-link.another-class {
  color: white;
}

.bio-container {
  background-color: white;
  height: 100%;
}

.bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px auto;
  width: 80%;
  /* background-color: darkblue; */
}

.my-name {
  color: #333333;
  font-family: latobold;
  margin: 30px;
  font-weight: bold;

  font-size: 35px;
}

.bio-text {
  width: 50%;
  margin: 30px;
  font-family: latothin;

  font-size: 20px;
}

.bio-pic {
  display: flex;
  flex-direction: row;
}

.about-pic {
  max-width: 500px;
  margin: 30px;
  height: 500px;
  object-fit: cover;
}

/* modal */
@font-face {
  src: url(/Fonts/Helvetica/helvetica-rounded-bold-5871d05ead8de.otf);
  font-family: helround;
}

@font-face {
  src: url(/Fonts/Lato/Lato-Light.ttf);
  font-family: latothin;
}

.modal {
  display: none;
}

.modal.active {
  display: flex;
  justify-content: center;
  /* z-index: 2; */
}

.back-drop {
  top: 0;
  position: fixed;
  background: rgb(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  /* z-index: -1; */
}
.new-form {
  display: flex;
  width: 500px;
  margin: 50px auto;
  border-radius: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.close-button {
  color: #fff9;
  background: transparent;
  cursor: pointer;
  outline: none;
  border: transparent;
  margin: 10px;
  transition: 0.3s;
}
.close-button:hover {
  color: white;
}

.contact-head {
  color: white;
  margin: 5px;
  font-family: helround;
}

.text {
  text-align: center;
  margin: 10px;
  color: #fff9;
  font-family: latothin;
}

.contact-input {
  margin: 5px;
  padding: 20px;
  width: 100%;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

.send-button {
  display: block;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 3px;
  background-color: rgb(85, 172, 238);
  transition-property: background-color;
  transition-duration: 400ms;
  transition-timing-function: ease;
  font-size: 17px;
  color: white;
  cursor: pointer;
}
.send-button:hover {
  background: #3765a3;
}
