html, body {
    height: 80%;
    margin: 0;
}

body {
    font-family: "Lato", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: black;

    display: grid;
    place-items: center;
    overflow-y: scroll;
}
  
.content {
    text-align: center;
}

h1 {
  font-family: "Raleway", serif;
  font-size: 5rem;
  }

h2 {
  font-family: "Raleway", serif;
  color: #f2511b;
  font-size: 2rem;
  }

h3 {
  font-family: "Raleway", serif;
  font-size: 25px;
  }

  h4 {
  font-family: "Raleway", serif;
  font-size: 20px;
  }

.white-line {
    height: 1px;
    background-color: white; 
    border: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 20%;
    margin-left: auto;
    margin-right: auto;
  }

.spacer {
    height: 3px;
    background-color: white; 
    border: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 20%;
    margin-left: auto;
    margin-right: auto;
  }

.content-section {
    display: none;
  }

.centered-text {
    text-align: center;
  }

.orange {
  color: #f2511b;
}

a:link {
    color: black;
  }

  a:visited {
    color: black;
  }

  a:hover {
    color: #f2511b;
  }

  a:active {
    color: #f2511b;
  }

.project {
    border-left: 3px solid black;
    padding-left: 6px; 
  }

label {
    display: block;
    margin: 10px 0;
  }
  
input, textarea, select {
    width: 100%;
    min-height: 30px;
  }
  
input, textarea {
    background-color: white;
    border: 1px solid black;
    color: black;
  }
  
input[type="submit"] {
    display: block;
    border: 0;
    margin: 0;
    font-size: 20px;
    color: white;
    background-color: #f2511b;
    width: fit-content;
  }