/*
  Static recreation of manueljcarvalho.com for Cloudflare Pages.
  Edit only the email/text/image paths below if needed.
*/

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400&display=swap');

:root {
  --page-background: #ffffff;
  --page-text: #000000;
  --content-width: 650px;
  --outer-space: 1.25rem;
  --top-space: 100px;
  --font-size: 1.75rem;
  --line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--page-background);
  color: var(--page-text);
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-size: var(--font-size);
  line-height: var(--line-height);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.site {
  padding-left: var(--outer-space);
  padding-right: var(--outer-space);
}

.top-space {
  height: var(--top-space);
}

.image-wrap {
  max-width: var(--content-width);
  margin: 0 auto 1em auto;
}

.image-wrap img {
  display: block;
  width: min(100%, 635px);
  height: auto;
  margin: 0 auto;
  vertical-align: bottom;
}

.contact {
  margin: 0;
  text-align: center;
  font-style: normal;
  font-weight: 400;
}

.contact a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .25ch;
}

.contact a:hover,
.contact a:focus {
  text-decoration-style: dashed;
}

.contact a:active {
  text-decoration: none;
}
