@font-face {
  font-family: 'Jellee';
  src: url('Jellee Bold 700.otf') format('truetype');
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-y: scroll;
}

body {
  margin: 20px 250px 10px;
  box-shadow: 5px 5px 15px rgba(17, 17, 17, 0.8);
  background: linear-gradient(270deg, #ffffff, #c8c8c800, #7b7b7b, #565656, #313131, #111010);
  background-size: 800% 800%;
  animation: gradientMove 50s ease infinite;
  overflow-x: hidden;
  border: 1px solid #060606;
}

.home-div {
  display: flex;
  width: 100%;
  height: 100%;
}

.img-div {
  width: 100%;
  height: 100%;
  background-color: hsl(210, 6%, 88%);
  display: block;
}

.img-styling-nnu {
  width: 3em;
  height: 3em;
  margin-bottom: 455px;
  margin-left: 7px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #030520;
}

.git-hub-img {
  width: 2.5em;
  height: 2.5em;
  margin-left: 92%;
  margin-top: 7px;
}

.img-styling {
  width: 55%;
  height: 40%;
  margin-left: 85px;
  margin-top: 20%;
  border: 11px solid #969393;
  object-fit: cover;
  border-radius: 40%;
}

.img-styling-eng {
  width: 30%;
  height: 20%;
  margin-left: 3%;
  margin-top: 15%;
  object-fit: cover;
  border-radius: 20%;
  border: 11px solid #969393;
}

.img-styling-udacity {
  width: 30%;
  height: 20%;
  margin-left: 27%;
  margin-top: 15%;
  object-fit: cover;
  border-radius: 20%;
  border: 11px solid #969393;
}

.home-txt-div {
  background-color: hsl(225, 17%, 91%);
  width: 110%;
}

.home-txt-div-p {
  margin-top: 15%;
  margin-left: 7%;
  font-family: 'Trebuchet MS';
  font-size: medium;
}

#home-txt-div-h1 {
  margin-left: 5%;
  font-family: 'Jellee', sans-serif;
  font-size: 60px;
  margin-top: -7px;
}

#home-txt-div-h4 {
  margin-left: 7%;
  font-family: 'Trebuchet MS';
  font-size: 25px;
}

.home-txt-div-p2 {
  margin-left: 7%;
  margin-right: 7%;
  font-family: 'Bahnschrift SemiBold';
  font-size: 16px;
}

.home-txt-div-p3 {
  margin-left: 5%;
  margin-top: 5%;
  font-size: large;
  font-family: 'Trebuchet MS';
}

.div-cirles {
  margin-top: 15%;
  margin-left: 5%;
  gap: 50px;
  display: flex;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  margin-right: 30px;
  font-family: 'Trebuchet MS';
  font-size: large;
}

#first-circle-color {
  background-color: rgb(165, 221, 243);
}

#sec-circle-color {
  background-color: rgb(247, 245, 245);
}

#third-circle-color {
  background-color: rgb(112, 80, 69);
}

.circle:hover {
  background: #44446a;
  transform: scale(1.1);
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* -------------------- PROJECTS -------------------- */

.projects-div {
  width: 100%;
  padding: 40px;
  background-color: #cecdcd;
}

#projects-div-h1 {
  margin-bottom: 7%;
  margin-top: 0;
  margin-left: 30%;
  font-size: 50px;
  font-family: 'Trebuchet MS';
}

.projects-grid {
  text-align: center;
  margin-top: 40px;
}

.project-item {
  display: inline-block;
  width: 30%;
  text-align: center;
  margin-bottom: 30px;
  font-size: medium;
  font-family: 'Trebuchet MS';
}

.project-img {
  width: 120px;
  height: 120px;
  border-radius: 30%;
  object-fit: cover;
  border: 4px solid black;
  transition: 0.3s;
}

.project-img:hover {
  transform: scale(1.08);
}

.project-desc {
  margin-top: 10px;
  font-family: 'Trebuchet MS';
}

#more-projects {
  font-size: 120%;
  font-family: 'Trebuchet MS';
}

/* -------------------- SOCIAL -------------------- */

.social-div {
  width: 100%;
  padding: 40px;
  background-color: rgb(108, 108, 108);
  text-align: center;
}

.social-title {
  margin-bottom: 7%;
  margin-top: 0;
  font-size: 50px;
  font-family: 'Trebuchet MS';
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid black;
  transition: 0.3s;
}

.social-ol {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 100px;
  font-family: 'Trebuchet MS';
  font-size: large;
  margin-bottom: 30px;
}

.social-icon:hover {
  transform: scale(1.1);
}

.contact-me {
  font-size: 150%;
  font-family: 'Trebuchet MS';
}