#navgrey {
  background-color: rgb(24, 23, 20);
  grid-row: 2 / 3;
  grid-column: 1 / -1;
}
header {
  background-color: rgb(180, 149, 149);
  margin: 0;
  grid-row: 1 /3;
  grid-column: 2 / -2;
}
header h1 {
  padding: 20px;
  margin: 0;
  color: rgb(255, 255, 255);
}
body {
  background-color: ghostwhite;
  color: rgb(10, 9, 8);
  font-family: -apple-system;
  margin: 0cm;
  background-attachment: fixed;
}
header a {
  text-decoration: none;
  color: black;
}
nav a {
  color: #ffffff;
  padding: 1rem 0rem;
  display: block;
  text-decoration: none;
  text-align: center;
}
nav a:hover {
  background-color: #ad9899;
}
#homeimage {
  background-image: url("./imgs/homeimage.jpeg");
  margin-left: 15em;
  margin-right: 5em;
  margin-top: 0px;
  margin-bottom: 50px;
  border-radius: 30px;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
nav ul {
  list-style: none;
  margin: 0px;
  display: flex;
  flex-flow: row nowrap;
  margin: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
}
nav ul li {
  width: 80%;
}
footer {
  font-size: 0.6em;
  padding: 2em;
  font-style: italic;
  text-align: center;
  grid-row: 5 / 10;
  grid-column: 2 / -2;
}
#wrapper {
  display: grid;
  grid-auto-rows: minmax(0px, auto);
  grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(
      0px,
      1fr
    );
}
h3 {
  font-family: "Courier New", Courier, monospace;
  color: black;
  margin-left: 3em;
  padding-top: 50px;
  padding-bottom: 50px;
}
br {
  display: block;
  margin-bottom: 20px;
  margin-top: 20px;
}
.column {
  column-gap: 40px;
  column-count: 3;
  column-rule-style: solid;
  column-rule-width: 1px;
  column-rule-color: rgb(44, 55, 59);
  column-rule: 1px solid rgb(49, 55, 57);
  margin-top: 60px;
  margin-left: 60px;
  margin-right: 60px;
  margin-bottom: 100px;
}
.education {
  font-family: Verdana;
  text-align: center;
  color: rgb(180, 149, 149);
}
hr {
  color: rgb(180, 149, 149);
}
form {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 200px 1fr;
  gap: 0.75rem;
  width: 100%;
  margin-right: 50px;
}
input {
  font-size: 1rem;
  padding: 10px;
  color: #050303;
  background-color: #e5d9d9;
  border: none;
  margin-right: 50px;
}
text {
  font-size: 1rem;
  padding: 10px;
  color: #080707;
  background-color: #fafafa;
  border: none;
}
input:focus {
  outline: none;
  margin-right: 50px;
}
textarea:focus {
  outline: none;
}
.Message {
  border: none;
  margin-right: 50px;
}
label {
  padding: 10px;
  text-align: right;
}
#Submit {
  width: 10rem;
  grid-column: 2 / 3;
  background-color: #dec5c5;
}
.contact {
  font-family: "Courier New", Courier, monospace;
  color: black;
  margin-left: 3em;
  padding-top: 30px;
}
@media only screen and (max-width: 992px) {
  #resume {
    display: grid;
    height: auto;
    align-items: center;
    column-width: 768px;
  }
}

@media only screen and (max-width: 768px) {
  #resume {
    display: grid;
    height: auto;
    align-items: center;
    column-width: 100%;
  }
  .column {
    column-count: 1;
  }
  form {
    align-items: center;
  }
  #homeimage {
    max-width: 100%;
    height: auto;
  }
}
