/* Main */
@charset "UTF-8";

:root {
  --main-color: #671515;
  --nav-color: white;
  --other-color: #cc7a74;
  --light-color: #F8F8F8;
  --line-color: #B0B0B0;
}

html {
  height: 75%;
}

body {
  position: relative;
  margin: 0;
  padding-bottom: 8rem;
  min-height: 100%;
}

main {
  margin-top: 80px;
  margin-bottom: 50px;
  font-size: 17px;
  text-align: justify;
}

/* Links */
a:link, a:visited, a:active {
  color: var(--main-color);
  text-decoration: none;
  font-weight:bold;
}

a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

/* Fonts */
html, body, h1, h2, h3, h4, h5, h6 {
  font-family: Roboto, Verdana, Segoe, sans-serif; 
}


/* Navbar */
.navbar {
  background-color: var(--main-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.navbar a {
  padding: 14px 20px;
  color: var(--nav-color);
}

.navbar a:hover {
  opacity: 0.5;
  text-decoration: none;
}

.navbar .center {
  display: flex;
}

/* Footers */
.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 15px;
  text-align: center;
}

.footer ul {
  overflow: auto;
  margin: 0 auto;
  max-width: 280px;
  padding: 0;
  width: 94%;
}

.footer ul li {
  list-style-type: none;
  float: left;
}

.footer ul li a i {
  color: var(--main-color);
  width: 35px;
  height: auto;
  font-size: 25px;
  text-align: center;
}

.footer ul li a i:hover {
  opacity: .7;
}

/* Content */
.center {
  margin: 0 auto;
  max-width: 750px;
  width: 94%;
}

.intro{
  display: block;
}

.container {
  display: flex;
  flex-direction: column;
}

.container-index {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.empty {
  flex-grow: 1;
  padding: 3%;
}

.profile-pic > img {
  vertical-align:top;
  max-width: 200px;
  height: auto;
  border-radius: 50%;
}

.text {
  margin-right: auto;
}

.noindent {
  list-style-position: inside;
  list-style-type: disc;
  padding-inline-start: 0px;
}


/* Media fields */
@media (max-width: 600px) {
  .container-index {
    flex-direction: column-reverse;
    justify-content: center;
  }
}

div {
  /*border:1px solid black;*/
}