/* line 1, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/about.scss */
main.about {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
/* line 1, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/admin.scss */
.admin-form-post {
  max-width: 1000px;
  margin: 0 auto;
}
/* line 5, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/admin.scss */
.admin-form-post form {
  display: flex;
  flex-direction: column;
}
/* line 10, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/admin.scss */
.admin-form-post label {
  padding-top: 1em;
  padding-bottom: 1em;
}
/* line 15, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/admin.scss */
.admin-form-post .content-field {
  height: 80vh;
}

/* line 21, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/admin.scss */
.admin-index .admin-post-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* line 27, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/admin.scss */
.admin-index .admin-post-item {
  width: 80%;
  display: inline-block;
}
/* line 32, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/admin.scss */
.admin-index .admin-post-delete-btn {
  width: 5%;
  display: inline-block;
}
/* line 1, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/base.scss */
body {
  font-family: 'Poppins', sans-serif;
  color: #444a51;
}

/* line 6, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/base.scss */
h1, h2, h3 {
  font-weight: 800;
  color: #444a51;
}
/* line 10, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/base.scss */
h1 a, h2 a, h3 a {
  text-decoration: none;
}

/* line 15, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/base.scss */
a {
  text-decoration: underline;
  color: #444a51;
  transition: color 350ms;
}

/* line 21, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/base.scss */
a:hover {
  color: #F15524;
}

/* line 25, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/base.scss */
p {
  line-height: 1.7;
}

/* line 29, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/base.scss */
li {
  line-height: 1.7;
}

/* line 33, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/base.scss */
main {
  padding: 1em;
  overflow-x: hidden;
}
/* line 1, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/footer.scss */
.footer {
  background: linear-gradient(to bottom, #fff, #6cace4);
  position: relative;
  width: 100vw;
  left: 0;
  padding-top: 150px;
}
/* line 1, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/header.scss */
header {
  display: flex;
  height: 150px;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(to top, #fff, #6cace4);
}
/* line 8, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/header.scss */
header .header-content {
  width: 100%;
  padding-top: 24px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
/* line 21, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/header.scss */
header .home-link {
  width: calc(50% - 10px);
  display: inline-block;
  width: calc(50% - 10px);
  display: inline-block;
}
/* line 29, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/header.scss */
header h1 {
  display: inline-block;
}
/* line 31, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/header.scss */
header h1 a {
  color: white;
  text-decoration: none;
}
/* line 37, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/header.scss */
header .about_contact_navigation {
  display: inline-block;
  width: calc(50% - 10px);
  text-align: right;
}
/* line 42, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/header.scss */
header .about_contact_navigation a {
  color: white;
  text-decoration: none;
}
/* line 47, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/header.scss */
header .about_contact_navigation a:hover {
  color: #F15524;
}
/* line 3, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home h2 {
  margin: 0;
}
/* line 7, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .posts-container {
  padding-top: 20px;
  background: white;
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* line 16, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .post-item {
  position: relative;
  padding-bottom: 86px;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1000ms, transform 500ms;
  transform: translateY(10%);
}
/* line 25, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .post-item.faded-in {
  opacity: 1;
  transform: translateY(0%);
}
/* line 31, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .introduction {
  color: #444a51;
  padding-bottom: 25px;
}
/* line 36, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .published-date {
  display: inline-block;
  font-size: 14px;
  color: black;
  padding-top: 5px;
}
/* line 43, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .small_clock_icon {
  display: inline-block;
  padding-left: 20px;
  padding-right: 16px;
  position: relative;
}
/* line 49, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .small_clock_icon svg {
  bottom: -3px;
  position: absolute;
}
/* line 55, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .minutes_to_read {
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #444a51;
}
/* line 63, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .read-more-button {
  padding: 15px 25px;
  background: #F15524;
  border-radius: 1.5em;
  color: white;
  display: inline-block;
  transition: background 350ms, transform 350ms;
}
/* line 72, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/home.scss */
main.home .read-more-button:hover {
  background: #ff8f58;
  transform: scale(1.1);
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* line 1, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/post.scss */
.post_container {
  margin: 0 auto;
  max-width: 1000px;
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  height: auto;
  opacity: 0;
  animation: 1500ms ease 250ms fadeIn forwards;
}

/* line 12, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/post.scss */
.highlight {
  background: white;
  display: inline-block;
  padding: unset;
}
/* line 17, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/post.scss */
.highlight pre.highlight {
  -webkit-overflow-scrolling: touch;
  border-radius: unset;
  background: #f2f2f2;
  overflow: scroll;
  display: flex;
  margin-bottom: unset;
  padding: unset;
  width: unset;
  height: unset;
  flex-direction: unset;
  align-items: unset;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 1, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight table td {
  padding: 5px;
}

/* line 2, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight table pre {
  margin: 0;
}

/* line 3, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight, .highlight .w {
  color: #586e75;
}

/* line 6, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .err {
  color: #002b36;
  background-color: #dc322f;
}

/* line 10, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {
  color: #657b83;
}

/* line 13, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .cp {
  color: #b58900;
}

/* line 16, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .nt {
  color: #b58900;
}

/* line 19, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .o, .highlight .ow {
  color: #93a1a1;
}

/* line 22, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .p, .highlight .pi {
  color: #93a1a1;
}

/* line 25, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .gi {
  color: #859900;
}

/* line 28, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .gd {
  color: #dc322f;
}

/* line 31, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .gh {
  color: #268bd2;
  background-color: #002b36;
  font-weight: bold;
}

/* line 36, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
  color: #6c71c4;
}

/* line 39, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .kc {
  color: #cb4b16;
}

/* line 42, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .kt {
  color: #cb4b16;
}

/* line 45, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .kd {
  color: #cb4b16;
}

/* line 48, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
  color: #859900;
}

/* line 51, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .sr {
  color: #2aa198;
}

/* line 54, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .si {
  color: #d33682;
}

/* line 57, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .se {
  color: #d33682;
}

/* line 60, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .nn {
  color: #b58900;
}

/* line 63, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .nc {
  color: #b58900;
}

/* line 66, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .no {
  color: #b58900;
}

/* line 69, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .na {
  color: #268bd2;
}

/* line 72, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {
  color: #859900;
}

/* line 75, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight .ss {
  color: #859900;
}

/* line 78, /Users/robskrob/code/projects/personal-site/app/assets/stylesheets/rouge.scss.erb */
.highlight {
  border-radius: 4px;
  background: #f2f2f2;
  margin-bottom: 1rem;
  padding: 1rem;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
