body {
  box-sizing: border-box;
  background: #232D3F;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  box-shadow: 100px 120px 120px 150px black inset;
  margin: 0;
}

.welcome {
  border: 1px solid silver;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 80%;
  height: 60vh;
  background-image: url(./images/cubes.jpg);
  background-repeat: no-repeat;
  background-position-x: left;
  box-shadow: 200px 50px 20px 10px black inset;
}
.welcome .nav {
  display: flex;
  justify-content: flex-end;
  align-items: top;
  float: right;
  width: 90%;
}
.welcome .nav ul {
  display: flex;
  gap: 20px;
}
.welcome .nav ul li {
  list-style: none;
}
.welcome .nav ul li a {
  text-decoration: none;
  color: white;
}
.welcome .nav ul li :hover {
  color: orange;
  border-bottom: 1px solid orange;
}
.welcome .intro {
  display: flex;
  flex-direction: column;
}
.welcome .intro h1 {
  width: 400px;
  height: auto;
  font-family: verdana;
  color: orange;
  display: flex;
  justify-content: flex-end;
}
.welcome .intro .logos {
  display: flex;
  justify-content: space-around;
  width: 60%;
  align-items: center;
  flex-direction: row-reverse;
}
.welcome .intro .logos p {
  border: 1px solid silver;
  border-radius: 20px;
  width: 300px;
  opacity: 0.5;
}
.welcome .intro .logos .icons ul {
  display: flex;
  list-style: none;
  gap: 10px;
}
.welcome .intro .logos .icons ul li {
  display: flex;
  border: 1px solid;
  border-radius: 50%;
}
.welcome .intro .logos .icons ul li a {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
}

.Value {
  width: 80%;
  margin-top: 20px;
}
.Value h3 {
  border-bottom: 1px solid white;
  width: 15rem;
  display: flex;
  font-size: 20px;
  justify-content: center;
  align-items: center;
}
.Value section {
  display: grid;
  justify-content: space-evenly;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.Value section .skill {
  border: 1px solid;
  border-radius: 12px;
}
.Value section .skill h4 {
  color: lightblue;
}
.Value section .skill p {
  text-wrap: wrap;
}
.Value section .skill img {
  width: 290px;
  height: 155px;
  margin: 10px;
  border-radius: 5px;
}

.pages {
  margin: 30px 0 0 0;
  padding: 0;
  height: auto;
}
.pages .sample {
  height: 300px;
  width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pages .sample div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25rem;
}
.pages .sample div h4 {
  color: white;
  font-size: 15px;
  font-weight: bolder;
}
.pages .sample div h4 a {
  text-decoration: none;
  color: white;
}
.pages .sample div h4 :hover {
  color: orange;
}
.pages .sample div p {
  text-wrap: inherit;
  margin: 0;
}
.pages .sample img {
  width: 300px;
  height: 200px;
  border-radius: 5px;
  box-shadow: 10px 10px 5px;
}
.pages .sample:hover {
  border-radius: 12px;
  transition: transform 0.9s ease-in-out;
  transform: scale(1.1);
}

footer {
  height: 20rem;
  width: 100%;
  background-image: linear-gradient(to bottom right, #232D3F, black);
  box-shadow: 120px 20px #232D3F inset;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer h6 {
  font-size: 25px;
}
footer #contact {
  display: flex;
  margin: 0;
}
footer #contact ul {
  display: block;
}
footer #contact ul li {
  list-style: none;
}

@media (max-width: 1024px) {
  .welcome,
  .Value,
  .pages .sample {
    width: 95%;
  }
  .welcome {
    height: auto;
    min-height: 400px;
  }
  .Value section {
    grid-template-columns: repeat(2, 1fr);
  }
  .pages .sample {
    flex-direction: column;
    height: auto;
    width: 100%;
  }
  .pages .sample img {
    width: 90vw;
    height: auto;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  .welcome {
    width: 100%;
    min-height: 300px;
    padding: 10px;
  }
  .welcome .nav {
    width: 100%;
  }
  .welcome .nav ul {
    gap: 10px;
    flex-direction: column;
    align-items: flex-end;
  }
  .welcome .intro h1 {
    width: 100%;
    font-size: 1.5rem;
  }
  .welcome .intro .logos {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .welcome .intro .logos p {
    width: 100%;
  }
  .Value {
    width: 100%;
  }
  .Value h3 {
    width: 100%;
    font-size: 1.2rem;
  }
  .Value section {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .Value section .skill img {
    width: 100%;
    height: auto;
  }
  .pages .sample {
    width: 100%;
    flex-direction: column;
  }
  .pages .sample img {
    width: 100%;
    height: auto;
  }
  .pages .sample div {
    width: 100%;
  }
  footer {
    height: auto;
  }
  footer h6 {
    font-size: 18px;
  }
  footer #contact {
    flex-direction: column;
  }
  footer #contact ul {
    padding: 0;
  }
}/*# sourceMappingURL=index.css.map */