@import "timeline.css";
@import "form.css";
@import "event.css";
@import "graph.css";

@font-face {
  font-family: 'Montserrat';
  src: url("../assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}

* {
 box-sizing: border-box;
 padding: 0;
 margin: 0;
}

html {
 font-size: 62.5%;
 font-family: 'Montserrat', sans-serif;
}

body {
  background-image: linear-gradient(to right bottom, #6b6e70, #585b5d, #45484b, #33373a, #222629);
}

header {
  height: 100vh;
  background-image: url("../assets/imgs/backgrounds/shattered.png");
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

.footer_link {
  color: #86c232;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.footer_link:hover {
  color: white;
  text-decoration: underline;
}

#title {
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#title_image {
  width: 250px;
  height: 250px;
  border-radius: 125px;
  border: 10px solid black;
  background-image: url("../assets/imgs/markus_forster.png");
  background-size: cover;
}

#title_name {
  margin-top: 25px;
  font-size: 3rem;
  text-align: center;
}

main {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  background-image: url("../assets/imgs/backgrounds/shattered.png");
}

#empty {
  width: 20%;
  min-width: 250px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#avatar {
  position: relative;
  left: -200px;
}

#avatar_outline {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 75px;
  border: 5px solid black;

  background-image: url("../assets/imgs/markus_forster.png");
  background-size: cover;
}

#content {
  width: 80%;
  background-color: rgb(163 188 182 / 30%);
  font-size: 1.5rem;
}

h1 {
  color: #86c232;
}

h2 {
  font-variant: small-caps;
}

h3 {
  color: #86c232;
  font-variant: small-caps;
  margin-bottom: 10px;
}

h4 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
}

section {
  padding: 20px;
}

.section_separator {
  height: 1px;
  background-color: #86c232;
  width: 70%;
  margin: 0 auto;
}

.filter_green {
  filter: invert(68%) sepia(11%) saturate(2373%) hue-rotate(43deg) brightness(98%) contrast(90%);
  transition: all 0.5s ease-in-out;
}

.filter_green:hover {
  filter: invert(100%) sepia(13%) saturate(7495%) hue-rotate(180deg) brightness(109%) contrast(91%);
}
