body {
	font-family: 'Montserrat', sans-serif;
  font-size: 1em;
}

a {
  color: inherit;
}

a:hover {
    background-color: rgba(0, 0, 0, .2);
}

h1 {
  	border-radius: .5ex;
    padding-top: .3ex;
    padding-bottom: .3ex;
    padding-left: .3ex;
}

section#resume h1 {
  transition: text-indent .5s;
}

section#resume h1:hover {
  text-indent: 1em;
}

#hello {
	margin: auto;
	width: 45rem;
	color: white;
	background-image: url("https://paulstarr.dev/Paul-Header-Image.jpg");
/* 	background-repeat: no-repeat; */
	background-position: center;
    background-size: 123%;
	padding: 1em;
	text-align: right;
  border-radius: 1ex;

  /* I've actually never used "ex" -- I had to look that one up. Looks like it is another relative measurement. 
  I usually use "rem" (root em, relative to the em set on the body, which is usually 16px). 
  If it works for you, I say keep using it, but know that it's not commonly used. */
}

/* 

I would suggest these styles for the mobile treatment of the header:

#hello {
    margin: 0;
    width: auto;
    color: white;
    background-image: url(https://cdn.glitch.com/756bbaa2-7ae8-46ca-906b-cba442b9fd51%2Fheaderimgcolor.jpg?1494215306781);
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 1em;
    text-align: right;
    border-radius: 1ex;
    background-size: cover;
    height: 100%;
}

You can apply these only to mobile by wrapping the styles in a media query that look something like this:

@media only screen and (max-width: 767px) { }

... or if you want to go the "mobile first" route, you can make these the default styles, 
and use a media query like this around your original styles:

@media only screen and (min-width: 768px) { }

*/

h1#helloh1 {
	font-size: 72pt;
  font-weight: bold; /* should be font-weight */
	padding-top: 0%;
	margin: 0%;
}

#mynameis {
	font-size: 2em;
}

#somethings {
	font-size: 1.5em;
	
}

.translatorentrybox {
	display: inline-block; /* not necessary with Flexbox */
	flex-direction: row; /* these flex properties can only be applied to the Flex parent element (#translator, in this case) - see: https://css-tricks.com/snippets/css/a-guide-to-flexbox/ */
	flex-wrap: wrap;
	float: left; /* floats won't work with Flexbox. Nor with inline-block, as the error to the left states */
	margin: 0px;
	padding: 0.5em;
	border-left: 0.25em solid white;
	border-right: 0.25em solid white;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: rgba(173, 78, 181, 0.44);
}

p.legend {
  display: block;
  text-align: right;
  font-size: 1.2em;
  margin: 0;
/*  padding: .5ex;
  border-radius: .5ex;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.64);
  color: black; */ 
}

.legendbox {
  display: inline-block;
  background-color: rgba(0, 0, 0, 50%);
  border-radius: 1ex;
  padding: 1ex;
  width: 33%;
}


h1#translatorh1 {
	margin: 0px;
	margin-top: .5em;
	color: white;	
 	background-color: #ac4eb4; 
	width: 100%;
}

#translator {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-grow: 1;
	padding: 0%;
	margin: 0px;
	overflow: auto;
}

h1#editorh1 {
	margin: 0px;
	margin-top: .5em;
	color: white;	
	background-color: #60a19c;
	width: 100%;
}

#editor {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-grow: 1;
	padding: 0%;
	margin: 0px;
	overflow: auto;
}

.editorentrybox {
	display: inline-block;
	flex-direction: row;
	flex-wrap: wrap;
	float: left;
	margin: 0px;
	padding: 0.5em;
	border-left: 0.25em solid white;
	border-right: 0.25em solid white;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: rgba(96, 161, 156, 0.42);
}

h1#writerh1 {
	margin: 0px;
	margin-top: .5em;
	color: white;	
	background-color: #5381ac;
	width: 100%;
}

#writer {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-grow: 1;
	padding: 0%;
	margin: 0px;
	overflow: auto;
}

.writerentrybox {
	display: inline-block;
	flex-direction: row;
	flex-wrap: wrap;
	float: left;
	margin: 0px;
	padding: 0.5em;
	border-left: 0.25em solid white;
	border-right: 0.25em solid white;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: rgba(82, 129, 171, 0.33);
}

h1#musicianh1 {
	margin: 0px;
	margin-top: .5em;
	color: white;	
 	background-color: #ff944d; 
	width: 100%;
}

#musician {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-grow: 1;
	padding: 0%;
	margin: 0px;
	overflow: auto;
}

.musicianentrybox {
	display: inline-block;
	flex-direction: row;
	flex-wrap: wrap;
	float: left;
	margin: 0px;
	padding: 0.5em;
	border-left: 0.25em solid white;
	border-right: 0.25em solid white;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: rgba(255, 148, 77, 0.42);
}

h1#misch1 {
	margin: 0px;
	margin-top: .5em;
	color: white;	
 	background-color: #aaaaaa; 
	width: 100%;
}

#misc {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-grow: 1;
	padding: 0%;
	margin: 0px;
	overflow: auto;
}

.miscentrybox {
	display: inline-block;
	flex-direction: row;
	flex-wrap: wrap;
	float: left;
	margin: 0px;
	padding: 0.5em;
	border-left: 0.25em solid white;
	border-right: 0.25em solid white;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: rgba(170, 170, 170, 0.42);
}



h2 {
	margin: 0%;
}

footer {
  text-align: center;
}

footer p {
  color: grey;
  text-transform: uppercase;
  font-size: 1.5em;
  padding: .5ex;
  border: .5ex solid grey;
  border-radius: 1ex;
  display: inline-block;
  transform: rotate(5deg);
}

footer p.thanks {
  color: white;
  background: grey;
  text-transform: uppercase;
  font-size: 1.5em;
  padding: .5ex;
  border: .5ex solid grey;
  border-radius: 1ex;
  display: inline-block;
}
footer a {
  text-decoration: none;
}

/* Definitions for tablet displays */

@media only screen and (min-width: 481px) and (max-width: 1024px) {

  #editor, #writer, #translator, #musician, #misc {
    flex-direction: column;  
  }
  
  .editorentrybox, .writerentrybox, .translatorentrybox, .musicianentrybox, .miscentrybox {
    border: 0.25em solid white;
	  border-radius: 15px;
  }
}

/* Definitions for smartphone displays */

@media only screen and (max-width: 480px) {

  #hello {
    width: 92%;
	background: #3f6f4f;
}
  .legendbox {
  width: 90%;
   margin: 1ex;
}
  #editor, #writer, #translator, #musician, #misc {
    flex-direction: column;  
  }
  
  .editorentrybox, .writerentrybox, .translatorentrybox, .musicianentrybox, .miscentrybox {
    border: 0.25em solid white;
	  border-radius: 15px;
  }


}