/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

body {
  font-family: "EB Garamond", "Garamond", "Georgia", serif;
  background-color: #FAF8F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  color: #2C2C2C;
}

.container {
  text-align: center;
  padding: 1.5rem;
  max-width: 500px;
}
@media (min-width: 768px) {
  .container {
    padding: 2rem;
  }
}

h1 {
  font-size: 2rem;
  font-weight: 400;
  color: #1A1A1A;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
}

.icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
  display: block;
}
@media (min-width: 768px) {
  .icon {
    width: 150px;
    height: 150px;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .icon {
    width: 180px;
    height: 180px;
  }
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.75;
  line-height: 1.8;
  font-weight: 300;
}
@media (min-width: 768px) {
  p {
    font-size: 1.125rem;
  }
}

.emphasis {
  font-size: 0.875rem;
  opacity: 0.6;
  font-style: italic;
}
@media (min-width: 768px) {
  .emphasis {
    font-size: 1rem;
  }
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .social-links {
    gap: 1.5rem;
  }
}

.social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #8B7355;
  color: #FAF8F3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon svg {
  width: 24px;
  height: 24px;
}
.social-icon:hover {
  background-color: #6B5645;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (min-width: 768px) {
  .social-icon {
    width: 56px;
    height: 56px;
  }
  .social-icon svg {
    width: 28px;
    height: 28px;
  }
}