/* 
  size units: 
    width: %
    border: px
    margin: em
    font: pt
*/

body {
  font-family: "Fira Code", "Iosevka Extended", "Liberation Mono", monospace;
  background-color: #151515;
  color: #fbf1c7;
  width: 60%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1%;
  padding-right: 1%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15em;
  font-size: 12pt;
  border: 4px solid #292929;
}
div {
  width: 85%;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
}
p {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  margin-left: 0.2em;
  margin-right: 0.2em;
  text-align: justify;
  text-justify: inter-word;
}
h1, h2, h3, h4, h5 {
  color: #ffb347;
  line-height: 1.45;
  margin-top: 0.2em;
  margin-bottom: 0.1em;
  margin-left: 0%;
}
h1 {
  font-size: 16pt;
}
h2 {
  font-size: 14pt;
}
h3 {
  font-weight: bold;
}
h4 {
  font-style: italic;
}
/* hr {
  width: 90%;
  border: 1px solid #292929;
  padding: 0px;
  margin: 0px;
} */
a {
  text-decoration: none;
}
a:link {
  color: #e1a3ee;
}
a:visited {
  color: #d682e8;
}
a:hover {
  color: #ecc4f4;
  text-decoration: underline;
}
small {
  font-size: 8pt;
}

#header {
  width: 90%;
  display: flex;
  margin-top: 0em;
  padding-bottom: 1em;
  border-bottom: 2px solid #292929;
}
#mainTitle {
  margin-top: 0px;
  padding-top: 0px;
}
#mainSubtitle {
  margin-top: 0px;
  padding-top: 0px;
  padding-left: 0.5em;
}
#logo {
  float: left;
  height: 4em;
  padding-right: 1em;
}

#footer {
  width: 90%;
  border-top: 2px solid #292929;
  margin-top: 1em;
  margin-bottom: 0em;
}
#footerText {
  text-align: center;
}

.serviceContainer {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1em;
}
.serviceButton {
  display: flex;
  height: 3em;
  background-color: #292929;
  align-items: center;
  padding: 0.2em;
}
.serviceButton:visited {
  color: #e1a3ee;
}
.serviceButton:hover {
  background-color: #d682e8;
  color: #151515;
  text-decoration: none;
}
.serviceButton img {
  float: left;
  width: 2.9em;
  height: 2.9em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.serviceButton span {
  padding-right: 0.5em;
}

::selection {
  color: #151515;
  background: #fbf1c7;
}
::-moz-selection { /* for firefox */
  color: #151515;
  background: #fbf1c7;
}  

@media only screen and (max-width: 700px) {
  body {
    width: 95%;
  }
}
/* @media only screen and (max-width: 1500px) {
  body {
    width: 95%;
  }
} */
