/* FONTS */
@import 'https://fonts.googleapis.com/css?family=Orbitron:400,700';
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

body,
#disc,
#disc span {
  font-family: 'Orbitron', sans-serif;
}
p,
span {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.75rem;
}
#name {
  font-weight: 700;
}
#job {
  font-size: 3rem;
}
/* END FONTS */

body {
  padding-top: 80px;
}
#wrapper-all {
  margin: 0px auto 0px auto;
  padding-bottom: 25px;
}
#wrapper-home {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.section-wrapper {
  margin-top: 40px;
  margin-bottom: 20px;
}
.section-header {
  margin-bottom: 30px;
}
#home-image {
  flex: 0 1 30%;
}
#home-description {
  flex: 0 1 70%;
}
#description {
  margin: 25px 0px 10px 0px;
}
#works {
  margin: 30px 0px 50px 0px;
}
.work {
  margin: 24px 0;
  padding: 24px;
}
.work:hover {
  background-color: #DDD;
  box-shadow: 0 10px 10px rgb(94, 94, 102);
  border-radius: 8px;
}
.work-img {
  max-width: 320px;
  max-height: 240px;
  margin-top: 10px;
  border: 1px solid #888;
}
.work-desc-text {
  text-align: justify;
}
.wrapper-work-links {
  margin-top: 16px;
}
.work-link:link,
.work-link:visited,
.work-link:hover,
.work-link:focus,
.work-link:active {
  color: #495057;
  margin: 0 5px;
  text-decoration: underline;
}
.indev-img {
  background-color: #F5F5F5;
  filter: blur(2px);
}
.indev-desc {
  font-style: italic;
}
.languages {
  font-family: "Courier New";
  font-size: 1.25em;
}
#contact-links {
  margin: 30px 0px 0px 0px;
}
#contact-list li {
  margin: 5px;
}
.contact-icon {
  font-size: 50px;
}
#icon-linkedin {
  color: #007bb6;
}
#icon-freecodecamp {
  color: green;
}
#foot {
  background-color: black;
  margin-top: 25px;
  height: 50px;
  padding-top: 15px;
  color: white;
}
#home,
#projects,
#contact {
  position: relative;
  top: -50px;
}
@media(max-width:1000px){
  #wrapper-home {
    flex-direction: column;
  }
}
