body {
  background-image: linear-gradient(135deg, #d14dff 100%, #0019fa 70%);
  /* background-image: linear-gradient(135deg, #00c8c8 100%, #c20476 70%); */
  justify-content: center;
  align-items: center;
}

.navbar {
  position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #c02271;
}

.h2 {
  color: #dd006f;
}
h1 {
  color: #fff;
  font-size: 24px;
  font-family: "Lato", sans-serif;
  padding-top: 1rem;
}
a {
  color: #c02271;
  font-weight: bold;
}

h3 {
  color: #fff;
  font-size: 24px;
  font-family: "Akshar", sans-serif;
}
h5 {
  color: #fff;
  font-family: "Varela Round", sans-serif;
  font-size: 18px;
}

section {
  padding-top: 5rem;
  text-align: center;
}

/* JUMBOTRON CSS */

.badge {
  display: block;
  position: relative;
  width: 20rem;
  height: 20rem;
  cursor: pointer;

  background: url(img/profile.JPG) no-repeat 100% 50%;
  background-size: 100%;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  box-shadow: 0px 0.5rem 1rem rgba(0, 0, 0, 0.75);
}
.badge:hover {
  box-shadow: 0px 0.5rem 2rem rgba(0, 0, 0, 0.75);
  background-position: 0% 50%;
}
.badge:hover .text {
  transform: rotate(-45deg) translate(0px) rotate(-315deg);
  background: rgba(102, 51, 153, 0.5);
  width: 20rem;
  letter-spacing: 1rem;
  line-height: 20rem;
  height: 20rem;
  margin-top: -10rem;
  margin-left: -10rem;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1), letter-spacing 1.5s ease-out;
}
.badge .text {
  display: block;
  position: absolute;
  width: 10rem;
  height: 10rem;
  line-height: 10rem;
  left: 50%;
  top: 50%;
  margin-top: -5rem;
  margin-left: -5rem;
  font-size: 2rem;
  font-family: Raleway, sans-serif;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background: #d14dff;
  transform: rotate(-180deg) translate(-10rem) rotate(180deg);
  box-shadow: 0px 0.5rem 1rem rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

/* Glass */
.glassIco {
  --width: 100px;
  width: var(--width);
  height: var(--width);
  color: #fff;
  font-size: 30px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  margin: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.glassIco,
.glassIco * {
  box-sizing: border-box;
  transition: 200ms;
}
.glassIco:before {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(0px);
  transition: 400ms;
  transform: skewX(45deg) translateX(calc(var(--width) + 50%));
}
.glassIco:hover {
  transform: translateY(-20px);
}
.glassIco:hover:before {
  transform: skewX(45deg) translateX(calc(var(--width) * -1 - 50%));
}
.glassIco > * {
  opacity: 0.8;
}

/* project */

.container {
  width: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 10px;
  margin: 0 auto;
  opacity: 0.8;
}

.card {
  position: relative;
  width: 250px;
  height: 300px;
  margin: 0 auto;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.card .face {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card .face.face1 {
  box-sizing: border-box;
  padding: 20px;
}

.card .face.face2 {
  background: #111;
  transition: 0.5s;
}

.card:nth-child(1) .face.face2 {
  background: linear-gradient(45deg, #3603ad9f, #f7308db0);
  border-radius: 15px;
}

.card:nth-child(2) .face.face2 {
  background: linear-gradient(45deg, #3603ad9f, #f7308db0);
  border-radius: 15px;
}

.card:nth-child(3) .face.face2 {
  background: linear-gradient(45deg, #3603ad9f, #f7308db0);
  border-radius: 15px;
}

.card:hover .face.face2 {
  height: 100px;
  border-radius: 0 0 15px 15px;
}

.card .face.face2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px 0 0 15px;
}

.card .face.face2 h2 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  color: #fff;
  transition: 0.5s;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
}

.card:hover .face.face2 h2 {
  font-size: 1.5em;
}

.button {
  padding-top: 1.5rem;
  text-align: center;
  color: #fff;
}

.button .btn {
  color: #fff;
}

/* btn */
.btn {
  position: center;

  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-5px);
}
.btn:hover:before {
  transform: skewX(45deg) translateX(calc(var(--width) * -1 - 50%));
}
.btn > * {
  opacity: 0.8;
}
