html {
  font-size: 20px;
  line-height: 1.5rem;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background-color: #77b5fe;
  text-align: center;
  font-weight: bold;
  padding: 1rem;
  font-size: 1.5rem
}

footer {
  background-color: black;
  color: orangered;
  text-align: center;
  padding: 0.5em;
  flex-shrink: 0;
}

h1 {
  font-size: 27px;
  text-align: left;
}

.topnav {
  display: flex;
  justify-content: center;
  background-color: black;
  text-align: center;
}

.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 15px 30px;
  text-decoration: none;
}

.topnav a:hover {
  background-color: orangered;
  color: white;
  text-align: center;
}

h2 {
  text-align: left;
  color: black;
}

input {
  text-align: left;
}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  padding-bottom: 1rem;
}

.resume-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.resume-page {
  background-color: white;
  padding: 20px;
  border: 2px solid #ccc;
  position: relative;
  z-index: 1;
}

.resume-page ul {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  margin-left: -30px;
  line-height: 16px;
}

.resume-page h1 {
  font-family: Arial, Helvetica, sans-serif;
}

.resume-page h2 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-style: normal;
  font-weight: lighter;
  font-size: 18px;
}

.resume-page h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 14px;
}

.resume-page h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 15px;
}

.resume-page a {
  font-family: Arial, Helvetica, sans-serif;
  color: orangered;
  font-weight: normal;
  font-size: 14px;
}

.resume-page:before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  border-width: 10px 0 0 10px;
  border-style: solid;
  border-color: #ccc;
  background-color: white;
  z-index: -1;
}

.resume-page:before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  border-top: 30px solid transparent; /* Adjust this value to control the height of the triangle */
  border-left: 30px solid #ccc; /* Adjust this value to control the width of the triangle */
  z-index: -1;
  z-index: -1;
}


body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1 {
  font-size: 22px;
}

img {
  max-width: 100%;
  height: auto;
  padding-bottom: 1rem;
}

.topnav a {
  padding: 20px 15px;
}

main {
  padding-left: 5vw;
  padding-right: 5vw;
  padding-top: 10px;
  padding-bottom: 128px;
  flex: 1;
}

.date {
  font-size: 18px;
}

footer {
  bottom: 0;
  background-color: black;
  color: orangered;
  text-align: center;
  padding: 1em;
}

/*default formatting is mobile-oriented, desktop exclusion starts below*/

@media screen and (min-width: 850px) {
  html {
    font-size: 16px;
  }
  main {
    display: flex;
    flex-direction: column;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-top: 10px;
    padding-bottom: 128px;
  }

  .header {
    background-color: #77b5fe;
    padding: 2vw;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
  }

  body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  footer {
    bottom: 0;
    background-color: black;
    color: orangered;
    text-align: center;
    padding: 1em;
  }

  .form-text {
    color: orangered;
  }

  .form-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-container input {
    flex: 4;
    margin-right: 10px;
    color: rgb(0, 0, 0);
    resize: vertical;
    height: auto;
  }

  .input-field placeholder {
    color: rgb(114, 110, 110);
    font-style: italic;
    resize: vertical;
    height: auto;
  }

  .form-container button {
    flex: 1;
  }

  .pageclip-form {
    display: flex;
    align-items: center;
    justify-content: center;
    resize: vertical;
    height: auto;
  }

  .feedback-message-hidden {
    display: none;
  }

  .date {
    color: rgb(114, 110, 110);
    font-size: smaller;
    font-style: italic;
  }
}

