html {
  box-sizing: border-box;
  font-size: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background-color: hsl(0, 0%, 90%);
  font-family: Arial, Helvetica, sans-serif;
  background: rgb(209, 209, 209);
  background: radial-gradient(circle, rgb(209, 209, 209) 0%, rgb(150, 150, 150) 47%, rgb(71, 71, 71) 100%);
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0;
}

p {
  margin-top: 0;
}

a, a:visited, a:active {
  text-decoration: none;
}

img {
  max-width: 200px;
  border-radius: 50px;
}

.nav-wrapper {
  box-shadow: 1px 1px 70px 6px rgba(255, 255, 255, 0.48);
  background: rgb(92, 92, 92);
  background: radial-gradient(circle, rgb(92, 92, 92) 0%, rgb(59, 59, 59) 18%, rgb(0, 0, 0) 100%);
  padding: 5px 0px;
  margin: 0 auto;
  margin-top: 15px;
  max-width: 500px;
  width: 100%;
  border-radius: 30px;
}
.nav-wrapper .center img {
  width: 25px;
  margin-top: 3px;
}
.nav-wrapper .outer-wrapper {
  display: flex;
  align-items: center;
}
.nav-wrapper .item {
  font-weight: bold;
  margin: 0px 20px;
}
.nav-wrapper .item a {
  color: white;
}
.nav-wrapper .left.inner-wrapper, .nav-wrapper .right.inner-wrapper {
  flex: 1;
  display: flex;
  min-width: -webkit-min-content;
}
.nav-wrapper .right.inner-wrapper {
  justify-content: flex-end;
}

.card {
  box-shadow: 1px 1px 70px 6px rgba(255, 255, 255, 0.48);
  background: rgb(0, 0, 0);
  background: linear-gradient(115deg, rgb(0, 0, 0) 0%, rgb(60, 60, 60) 85%, rgb(98, 98, 98) 100%);
  height: auto;
  margin: 40px 20%;
  max-width: 80%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition: 0.5s;
}
.card .card-title {
  color: white;
  padding-top: 30px;
}
.card .card-description {
  color: white;
  width: 100%;
  max-width: 600px;
  height: auto;
  padding: 20px;
  font-size: 1.5em;
  text-align: center;
}
.card .card-images {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-bottom: 30px;
}
.card .card-images .card-img {
  border-radius: 20px;
  width: 500px;
  height: 400px;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: white;
  padding: 0px 20px;
}
.card .card-images .card-img:hover {
  border: solid white 2px;
}

.card:hover {
  box-shadow: 1px 1px 70px 15px rgb(255, 255, 255);
  scale: 1.1;
}

.c-info {
  color: white;
  padding: 20px;
  display: flex;
  gap: 40px;
}
.c-info .c-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  transition: 0.8s;
}
.c-info .c-link {
  transition: 0.8s;
  margin: 0;
  font-size: 0;
  color: white;
  overflow: hidden;
  text-wrap: nowrap;
  height: 30px;
  display: flex;
  align-items: center;
}
.c-info .c-socials:hover .c-link {
  font-size: 1em;
}
.c-info img {
  height: 30px;
  border-radius: 0;
}

.ymir-site {
  background-image: url("../../../assets/project-imgs/ymir-img.jpg");
}

.ymir-site:hover {
  background-image: url("../../../assets/gifs/ymir-vid.gif");
}

.unity-fps {
  background-image: url("../../../assets/project-imgs/unity-fps.jpg");
}

.unity-fps:hover {
  background-image: url("../../../assets/gifs/portfolio-unitygif.gif");
}/*# sourceMappingURL=style.css.map */