/* 
========================================================
--------------------- style css ---------------------
========================================================
*/

body {
  width: 100%;
  height: 100vh;
  font-family: sans-serif;
  font-weight: 600;
  background: #b1b1b1;
}

.nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: max-content;
  padding: 1rem;
}

.menu {
  display: flex;
  cursor: pointer;
}

.menu > li {
  padding: 1rem;
  color: #7c7c7c;
}

.btn {
  width: 15vw;
  height: max-content;
  padding: 0.7rem;
  border-radius: 1.5rem;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #b1b1b1;
  box-shadow: 3px 3px 5px 0px #000, -3px -3px 5px 0px #fff;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.btn:hover {
  transform: translateY(-10%);
}

.btn:active {
  box-shadow: inset 0px 0px 7px 0px #000;
}

.header {
  margin: auto;
  width: 50%;
  height: max-content;
  padding: 1rem;
  text-align: center;
}

.title {
  cursor: default;
  padding: 2rem;
}

.main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 70%;
  height: 50vh;
  margin: auto;
  border-radius: 2rem;
  box-shadow: inset 0px 0px 20px 0px #000;
  padding: 1rem;
}

.footer {
  text-align: center;
  margin: 5rem;
  font-size: 1.5rem;
  cursor: default;
}

.sec {
  width: 30%;
  height: max-content;
}

.sec > p {
  padding: 1rem;
  cursor: default;
}

/* 
========================================================
--------------------- class helper ---------------------
========================================================
*/

.image__wraperr {
  position: relative;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0px 0px 10px 0px #000;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.image__wraperr:hover {
  transform: translateY(-10%);
  box-shadow: 0px 0px 10px 0px #ffffff;
}

.image {
  position: absolute;
  width: 5rem;
}

.center {
  display: grid;
  place-items: center;
  text-align: center;
}
