/*variables*/
/*original "Oswald",*/
/* original "Quattrocento", serif*/
/*https://99designs.com/blog/tips/website-color-schemes/  go to number 7 for color scheme*/
/*end variables*/
/*start global*/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
}

body {
  background-color: #ebddcc;
  color: #121212;
}

h1 {
  font-family: sans-serif;
}

p {
  font-family: sans-serif;
}

.active {
  background-color: #fff;
  color: #ebddcc !important;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.scrolled {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #fff !important;
}

/*end global*/
/*scrollbar side*/
/* width */
::-webkit-scrollbar {
  width: 11px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*end scrollbar side*/
/*navbar start*/
nav {
  background-color: transparent;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

nav .branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

nav .branding .branding_name {
  font-family: sans-serif;
  font-size: 1.8em;
}

nav .branding .branding_description {
  font-family: sans-serif;
}

nav .navbar_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav .navbar_links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .navbar_links ul li {
  list-style-type: none;
  margin-left: 10px;
}

nav .navbar_links ul li a {
  text-decoration: none;
  color: #121212;
  padding: 6px 15px;
  border-radius: 20px;
}

nav .navbar_links ul li a:hover {
  color: #ebddcc;
  cursor: pointer;
  background-color: #fff;
}

/*navbar end*/
/*main page*/
.main_front-page {
  background-image: url("../images/background.jpeg");
  background-position: center;
}

.main_front-page .explanation_text {
  display: -ms-grid;
  display: grid;
  height: 100vh;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_front-page .explanation_text .explanation_text-profile {
  margin-bottom: 100px;
  font-size: 3.5em;
  color: #121212;
}

.main_front-page .explanation_text .explanation_text-resume {
  background-color: #121212;
  padding: 10px;
  border-radius: 30px;
  text-decoration: none;
  color: #ebddcc;
  position: relative;
  bottom: 40px;
}
/*# sourceMappingURL=styles.css.map */