body {
  margin: 0;
  font-family: sans-serif;
  color: #333;
}
/* Menu Start */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  background-color: #5c6fda;
  clip-path: circle(20px at calc(100vw - 5vw) 31px);
  transition: clip-path 0.5s;
}

.menu li {
  position: relative;
  z-index: 5;
}

.menu a {
  text-decoration: none;
  color: rgb(46, 45, 45);
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  width: 120px;
  padding: 5px;
}

.btn {
  position: absolute;
  top: 20px;
  left: calc(100vw - 5vw);
  transform: translateX(-50%);
  cursor: pointer;
}

.btn > span {
  width: 3px;
  height: 3px;
  display: block;
  border: 2px solid white;
  border-radius: 50%;
  margin-bottom: 1px;
}

.highlight {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  background-color: white;
  transition: transform 0.3s;
}
/* Menu End */

/* Image Container Start */
.image-container {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img {
  width: 250px;
  height: 250px;
  margin: 20px;
}

.img-one {
  background-image: url(images/atharva-tulsi-6ftd4RgUdnk-unsplash.jpg);
  background-size: cover;
  background-position: center;
}

.img-two {
  background-image: url(images/6536956.jpg);
  background-size: cover;
  background-position: center;
}
/* Image Container End */

/* Headings Start */
.container {
  padding: 0 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

article {
  padding: 20px 0;
}

article > h2 {
  text-transform: uppercase;
  font-size: 2rem;
  text-align: center;
}

.para {
  max-width: 700px;
  color: rgb(79, 77, 77);
  padding: 10px;
  text-align: center;
  line-height: 22px;
}

/* Headings End */

/* html {
  font-size: 62.5%;
} */

.navbar-wrapper {
  font-size: 62.5%;
  /* width: 100%;*/
  height: 0vh; 
  /* background: #eccc68; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar { 
  width: 20rem;
  height: 20rem;
  background-color: #fd7272;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: scale(0) rotate(-180deg);
  transition: transfrom 0.5s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0) 0.23;
}

.change .navbar {
  transform: scale(1) rotate(0);
  transition: all 1s;
}

.navbar-link {
  position: absolute;
}

.navbar-link i {
  font-size: 2.5rem;
  color: #585454;
  transition: color 0.3s;
}

.navbar-link:hover i {
  color: #222;
}

.navbar-link:nth-child(1) {
  top: 2rem;
}

.navbar-link:nth-child(2) {
  top: 6rem;
  right: 2rem;
}

.navbar-link:nth-child(3) {
  bottom: 6rem;
  right: 2rem;
}

.navbar-link:nth-child(4) {
  bottom: 2rem;
}

.navbar-link:nth-child(5) {
  bottom: 6rem;
  left: 2rem;
}

.navbar-link:nth-child(6) {
  top: 6rem;
  left: 2rem;
}

.navbar-btn {
  position: absolute;
  width: 3rem;
  height: 3rem;
  background: #4a69bd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.navbar-btn i { 
  font-size: 2rem;
  color: #fff;
  transition: transform 0.5s;
}

.change .navbar-btn i {
  transform: rotate(45deg);
}
