@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Pixelify+Sans:wght@400;500;600;700&display=swap");
* {
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: #151515;
  font-family: "Inter", sans-serif;
  font-family: "Pixelify Sans", sans-serif;
}

.container {
  padding: 40px;
}

.items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}

.navigation {
  margin-top: 20px;
  height: 35px;
  border-radius: 5px;
  border: 1px solid #404040;
  background: #121212;
}

.navigationGrid {
  width: 100%;
  height: 35px;
  display: grid;
  grid-template-columns: auto auto auto;
}
.navigationGrid a {
  text-align: center;
  vertical-align: middle;
  line-height: 35px;
  font-size: 20px;
  transition: 0.3s;
  cursor: pointer;
}
.navigationGrid a:hover {
  color: #346DFF;
}

.selected {
  font-weight: bold;
}

.card {
  border-radius: 5px;
  box-shadow: 0px 4px 10px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid #404040;
  max-width: 800px;
  min-width: 300px;
  margin-top: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  width: 100%;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.welcome {
  height: 168px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("./public/welcome.png");
}
.welcome h4 {
  font-size: 15px;
  color: #787878;
}

.whoami {
  height: 364px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("./public/whoami.png");
}
.whoami h4 {
  font-size: 1rem;
  color: #787878;
  padding: 0px 80px;
  text-align: center;
}

.title {
  height: 125px;
  background-image: url("./public/title.png");
  text-align: center;
  vertical-align: middle;
  line-height: 125px;
}
.title h1 {
  font-size: 40px;
}

.language {
  height: 168px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("./public/languages.png");
}
.language h4 {
  color: #787878;
}

.navigation {
  height: 35px;
  display: flex;
  flex-direction: row;
}

.footer {
  padding: 20px;
}
.footer h4 {
  color: #787878;
}

.blog {
  height: 168px;
  background-image: url("./public/blog1.png");
  background-size: 220%;
  animation-name: MOVE-BG;
  animation-duration: 120s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.blog h4 {
  font-size: 15px;
  color: #787878;
}
.blog #title {
  height: 168px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.blog #date {
  position: absolute;
  padding: 5px;
}
.blog #date h2 {
  font-size: 1.1rem;
}
.blog #date h2 span {
  color: #787878;
}

.blogpost {
  border-radius: 5px;
  box-shadow: 0px 4px 10px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid #404040;
  max-width: 800px;
  min-width: 300px;
  margin-top: 20px;
  height: 100%;
  font-family: "Inter", sans-serif;
  color: white;
  padding: 20px 0px;
}
.blogpost pre code {
  white-space: pre;
  display: block;
  overflow-x: auto;
  padding: 0.5em;
}
.blogpost pre {
  background-color: #070707;
  border-radius: 5px;
  margin-top: 2px;
}

.markdown {
  padding: 0px 20px;
}
.markdown h1 {
  font-size: 2em;
}

a {
  color: #DEDEDE;
  text-decoration: none;
}

h4 {
  color: #DEDEDE;
  cursor: default;
}

h1 {
  color: #DEDEDE;
  font-size: calc(20px + 0.390625vw);
  cursor: default;
}

@keyframes MOVE-BG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*# sourceMappingURL=styles.css.map */
