body {
  margin: 0;
  padding: 0;
  background: url(bg.jpg) no-repeat;
  font-family: 'Poppins', sans-seriff;
  background-size: cover;
}

.box {
  width: 450px;
  background: linear-gradient(135deg, rgba (255, 255, 255, 0.1), rgba (255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 40px;
  text-align: center;
  margin: auto;
  margin-top: 5%;
  color: white;
  font-family: 'Century Gothic', sans-serif;
}

.box-img {
  left: 100%;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.image {
  position: relative;
  width: 450px;
}

.image__overlay {
  border-radius: 50%;
  position: absolute;
  top: 0%;
  left: 27.5%;
  width: 45%;
  height: 71%;
  background: rgba(0, 27, 68, 0.4);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.image__overlay>* {
  transform: translateY(25px);
  transition: transform 0.25s;
}

.image__overlay:hover {
  opacity: 1;
}

.image__overlay:hover>* {
  transform: translateY(0px);
  transition: transform 0.25s;
}

.image__title {
  font-size: 2em;
  font-weight: bold;
}

.image__description {
  font-size: .71em;
  margin-top: 0.25em;
}

.box h1 {
  font-size: 40px;
  letter-spacing: 4px;
  font-weight: 100;
}

.box h5 {
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 100;
}

.box p {
  text-align: justify;
}

ul {
  margin: 0;
  padding: 0;
}

.box li {
  display: inline-block;
  margin: 6px;
  list-style: none;
}

.box li a {
  color: white;
  text-decoration: none;
  font-size: 60px;
  transition: all ease-in-out 250ms;
}

.box li a:hover {
  color: #b9b9b9;
}
#MenuIcon {
  width: 60px;
  border-radius: 1%;
  position:fixed;
  top:40px;
  right: 60px;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 0 0 rgb(34, 0, 255);
}

.menu-box{
  width: 0%;
  height: 0vh;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  border-bottom-left-radius: 100%;
  transition: width 0.5s, height 0.5s, border-raidus 0.5s;
}
.menu-box.open-menu{
  width: 100%;
  height: 100vh;
  border-bottom-left-radius: 0;
}
.menu-box.open-menu ul li{
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s, opacity 1s;
  transition-delay: 0.5s;
}
.menu-box ul li{
  list-style: none;
  margin: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}
.menu-box ul li a{
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  text-shadow: 0 0 0 rgb(34, 0, 255);
  transition: text-shadow 0.5s,transform 0.5s;
  position: relative;
}
.menu-box ul li a:hover{
  text-shadow: -3px 3px 0 rgb(34, 0, 255);
  transform: translateY(-6px);
}
.menu-box ul li a::after{
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  bottom: 19px;
  right: -18px;
  opacity: 0;
  box-shadow: 0 0 0 rgb(34, 0, 255);
  transition: box-shadow 0.5s;
}

.menu-box ul li a:hover::after{
  opacity: 1;
  box-shadow: -2px 2px 0 rgb(34, 0, 255);
}