@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: "Lato", sans-serif;
}

body {
  font-size: 17px;
  background-color: #5F021F;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: bold;
}

h1 {
  font-size: 2.94em;
  line-height: 1em;
}

h2 {
  font-size: 2em;
  line-height: 1.1em;
}

h3 {
  font-size: 1.52em;
  line-height: 1.1em;
}

h4 {
  font-size: 1.06em;
  line-height: 1em;
}

p {
  line-height: 1.5em;
  margin: 0px;
}

input[type=text], input[type=email], input[type=tel], input[type=password], input[type=date], select, textarea {
  border: 1px solid #E9E9E9;
  font-size: inherit;
  padding: 8px 19px;
  appearance: none;
}

input[type=text], input[type=email], input[type=tel], input[type=password], input[type=date], select {
  height: 48px;
}

select {
  outline: none;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignright {
  display: block;
  margin-left: auto;
}

a:focus {
  outline: none;
}

/* Medium Screen/Large Tablets */
/* Tablets */
/* Mobile wide/Smaller Tablets */
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2.35em;
  }

  h2 {
    font-size: 1.6em;
  }
}
/* Small Screen Mobile */
@media only screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 1.9em;
  }

  h2 {
    font-size: 1.28em;
  }
}
/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */
/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

header {
  background-color: #5F021F;
}

#header-content {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#header-logo {
  width: 100px;
}
@media only screen and (max-width: 480px) {
  #header-logo {
    width: 50px;
  }
}

#header-title {
  font-size: 40px;
  font-weight: 600;
  padding-left: 20px;
  text-align: center;
  flex-grow: 1;
  color: #5F021F;
}
@media only screen and (max-width: 480px) {
  #header-title {
    font-size: 20px;
  }
}

#body-content {
  max-width: 768px;
  margin: 0 auto;
  padding: 50px;
}
@media only screen and (max-width: 768px) {
  #body-content {
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  #body-content {
    padding: 20px;
  }
}

#projects {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 480px) {
  #projects {
    padding-top: 30px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
#projects .project {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 34px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 480px) {
  #projects .project {
    border-radius: 10px;
  }
}
#projects .project .project-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#projects .project .image {
  width: 100px;
  border-radius: 20%;
  align-self: flex-start;
}
@media only screen and (max-width: 480px) {
  #projects .project .image {
    width: 60px;
  }
}
#projects .project .title-subtitle {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-left: 20px;
}
#projects .project .title {
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  #projects .project .title {
    font-size: 20px;
  }
}
#projects .project .subtitle {
  font-size: 20px;
  margin-top: 6px;
}
@media only screen and (max-width: 480px) {
  #projects .project .subtitle {
    font-size: 16px;
  }
}
#projects .project .download {
  margin-top: 20px;
}
@media only screen and (max-width: 322px) {
  #projects .project .download {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
#projects .project .download img {
  height: 50px;
}
@media only screen and (max-width: 480px) {
  #projects .project .download img {
    height: 40px;
  }
}
#projects .project .download a {
  text-decoration: none;
  margin-right: 10px;
}
@media only screen and (max-width: 480px) {
  #projects .project .download a {
    margin-right: 6px;
  }
}

/*# sourceMappingURL=style.css.map */
