@font-face {
  font-family: "Sura-Regular";
  src: url(./assets/Sura-Regular.ttf) format("truetype"), url(./assets/Sura-Regular.woff) format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Sura-Bold";
  src: url(./assets/Sura-Bold.ttf) format("truetype"), url(./assets/Sura-Bold.woff) format("woff");
  font-weight: 700;
  font-style: bold;
}

body {
  background-color: #e6d4c3;
  font-family: "Sura-Regular", serif;
  font-weight: 400;
  color: #3f1e00;
}

/* css reset */
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;
  vertical-align: baseline;
}

.landing-page-content {
  max-width: 60ch; /* 45 – 75 characters is a good baseline for text content*/
  margin: auto;
  padding: 1em;
  margin-bottom: 20px;
}

.landing-page-content header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.landing-page-content header nav {
  margin: 8px;
}

.landing-page-content main {
  box-sizing: border-box;
  text-align: center;
  font-size: 1.15em;
  margin-bottom: auto;
  margin-top: auto;
}

.landing-page-content li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.landing-page-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.title {
  font-size: 3rem;
  font-family: "Sura-Bold", serif;
  font-weight: 700;
}
.subtitle {
  font-size: 2rem;
}

.landing-page-content p {
  margin-top: 0.05em;
}

.about-me {
  text-align: left;
  text-indent: 50px;
}


.landing-page-content aside {
  border: 1px solid rgba(179, 163, 163, 0.288);
  box-shadow: -5px 5px 5px rgba(179, 163, 163, 0.288);
  margin: 50px;
}

.pfp {
  border-radius: 50%;
  border: 2px solid #ee8323;
  max-height: 128px;
  min-height: 128px;
}

