body {
  margin: 0;
  user-select: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-track {background: #f1f1f1;}
::-webkit-scrollbar-thumb {background: #888;}
::-webkit-scrollbar-thumb:hover {background: #555;}


.centered-horizontally, .centered-children, .centered-vertically {
  display: flex;
}

.centered-horizontally, .centered-children {justify-content: center;}
.centered-vertically, .centered-children {align-items: center;}

.content-wrapper {
  padding: 4em;
  font-family: "Fira Code";
  width: 60em;
  box-sizing: border-box;
}

.content-heading, .content-subheading {
  font-size: 3em;
  font-family: "Montserrat";
}

.content-subheading {
  font-size: 2em;
  color: var(--secondary);
}

.accent-color, #age, #years {color: var(--accent);}

.content-paragraph {
  margin-top: 1em;
  font-size: 1.3em;
}

.tools-container {
  width: 100%
}

.tool {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 5em;
  height: 5em;
  margin: 0.5em;
  background: var(--light-secondary);
  border-radius: 50%;
  padding: 1em;
  box-sizing: border-box;
}

.py {background: #a8d2ff;}
.js {background: #fff8a8}
.html {background: #ffd2a8}
.css {background: #a8d2ff}
.replit {background: #e7e1fe;}
.pycharm {background: #a4fed7;}
.eclipse {background: #b3a4fe;}
.selenium {background: #95fea6;}

.tool:hover {transform: scale(1.02);}

.contact-container {
  position: fixed;
  left: 1em;
  bottom: 1em;
}

.contact {
  text-decoration: none;
  font-size: 1.8em;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.contact:hover {font-size: 2em;}

.project {
  display: inline-block;
  font-size: 1.2em;
  border-style: solid;
  border-radius: 4px;
  border-color: var(--accent);
  padding: 0.5em;
  height: 100%;
  width: 15em;
  border-width: 1px 1px 1px 0.3em;
  vertical-align: middle;
  box-sizing: border-box;
}

.project-title {
  color: var(--accent);
  font-size: 1.5em;
  font-family: "Montserrat";
}

.project-description {
  height: 7em;
  overflow-y: auto;
  overflow-x: hidden;
}

.skill {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  color: transparent;
  cursor: pointer;
}

.skill:hover {
  color: #ffffff;
  width: auto;
  border-radius: 3vh;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.skills-container {
  overflow-x: auto;
  white-space: nowrap;
}

.skill--py {background: #5d9bfe;}
.skill--requests {background: #bfbfbf;}
.skill--discord {background: #5865f2;}
.skill--js {background: #fee486;}
.skill--html {background: #f3ab59;}
.skill--css {background: #7a58f3;}
.skill--flask {background: #6e6e6e;}

.project-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1em;
}

.footer {
  color: #878787;
  margin-top: 1em;
  font-size: 1.1em;
}

.project-container a {
  font-size: 1.2em;
}
