@import "mainStyle.css";

body {
  height: 100%;
  margin: 0;
}

.introSection {
  background-color: #2d2d2d;
  text-align: center;
  height: 100vh;
}
.authorName {
  color: whitesmoke;
  position: absolute;
  font-size: 5rem;
  width: fit-content;
  
  font-family: Consolas, Verdana, Geneva, Tahoma, sans-serif;
  top: 40%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.contactSection {
  text-align: center;
  align-items: center;
  align-content: center;
  font-family: sans-serif, arial;

}

.formMessage {
  font-family: "Calibri Light";
  font-size: 3vmax;

}
.sameLineElem {
  display: inline-block;
}

.sendButton {
  background-color: white;
  border: none;
  color: black;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border: 2px solid #2d2d2d;
}

.sendButton:hover {
  background-color: #2d2d2d;
  color: white;
}

textarea {
  margin-top: 5px;
  width: 20vmax;
  height: 10vmax;
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
  border-color: -moz-use-text-color #ffffff #ffffff -moz-use-text-color;
  border-image: none;
  border-radius: 6px 6px 6px 6px;
  border-style: none solid solid none;
  border-width: medium 1px 1px medium;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  color: #555555;
  font-size: 1em;
  line-height: 1.4em;
  padding: 5px 8px;
  transition: background-color 0.2s ease-out;
}

textarea:focus {
  background: none repeat scroll 0 0 #ffffff;
  outline-width: 0;
}

input {
  font-size: 100%;
  margin-top: 10px;
  margin: 0 0.25rem;
  min-width: 10vmax;
  min-height: 3vmax;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
  border: 1px solid #2d2d2d;
  border-left: 3px solid;
  border-radius: 5px;
  transition: border 0.5s;
}
input:focus {
  background: none repeat scroll 0 0 #ffffff;
  outline: none;
  border: 0.5px solid #2d2d2d;
}

input:optional {
  border-left-color: #999;
}
input:required {
  border-left-color: palegreen;
}
input:invalid {
  border-left-color: salmon;
}
