@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@500&family=Overpass:wght@300&family=Righteous&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');
*{
    margin: 0px;
    padding: 0px;
}

body{
    /* background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* background-image: url(task_02_Media/DeepSpace.jpg); */
    background-image: linear-gradient(to top, #5f72bd 0%, #9b23ea 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* .me{
    border-radius: 50%;
    width: 44px;
    height: 44px;
} */

.navbar{
    margin-top: 10px;
    overflow: hidden;
    position: sticky;
    filter: drop-shadow(0 0 10px #060606);
}

#nav_container1{
    gap: 60px;
}

#nav_ul{
    gap: 50px;
}


#nav_text{
    color: white;
    font-size:large;
}

#nav_text:hover{
    width:max-content;
    background-color: #06060600;
    border-radius: 18px;
    backdrop-filter: blur(5px);
    box-shadow: 1px 2px 4px rgba(219, 246, 246, 0.947);
    color: #000000;
    transform: scale(1.1);
}


#mail_logo:hover{
    transform: scale(1.1);
    filter: drop-shadow(0 5px 10px #ffffff);
}

/* end of nav bar section */



.line{
  border-bottom: 1px solid rgb(255, 255, 255);
  opacity: 60%;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.card_box {
  position: relative;
  width: 350px;
  height: 550px;
  border-radius: 14px;
  z-index: 1111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 6px 5px #bebebe44;
  margin: 50px auto 20px;
  ;
}

.background {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 340px;
  height: 540px;
  z-index: 2;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(24px);
  border-radius: 10px;
  overflow: hidden;
  outline: 2px solid rgb(0, 0, 0);
}

.blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 450px;
  height: 550px;
  border-radius: 50%;
  background-color: rgb(253, 253, 21);
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
  25% {
      transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
  transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
      transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }
  100% {
      transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}


/*  */

.title_sw{
  display: flex;
  justify-content: center;
  margin: 15px auto 10px;
}

.stop_watch_title{
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
}

.timer_display{
  color: white;
  text-align: center;
  font-size: 36px;
  font-family: 'Dosis', sans-serif;
  font-family: 'Righteous', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Overpass', sans-serif;
  margin-top: 32px;
  position: relative;
  background-color: rgba(113, 113, 113, 0.353);
  padding: 10px 0 10px;
  box-shadow: 0 4px 8px 0 rgba(159, 159, 159, 0.501), 0 6px 20px 0 rgba(160, 160, 160, 0.2);
}

.three_buttons{
  display: flex;
  justify-content: space-between;
  margin: 32px 8px 12px;
}

/* buttons */

#pause_timer,
#reset_timer{
  padding: 12px 23px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

#start_timer{
  padding: 12px 23px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #23c483;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

#pause_timer:hover,
#start_timer:hover,
#reset_timer:hover {
  background-color: #23c483;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}


#pause_timer:active,
#start_timer:active,
#reset_timer:active {
  transform: translateY(-1px);
}

/* buttons */

.lap_btn{
  margin: 20px auto 20px;
  display: flex;
  justify-content: center;
}

.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: rgb(255, 65, 65);
}

/* plus sign */
.sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 17px;
}

.sign svg path {
  fill: white;
}
/* text */
.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: .3s;
}
/* hover effect on button width */
.Btn:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: .3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 20px;
}
/* hover effect button's text */
.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
}
/* button click effect*/
.Btn:active {
  transform: translate(2px ,2px);
}



.lap_box .lap_list{
  list-style-type: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: scroll;
  padding-left: 0px;
  margin-top: 32px;
  border: #fff;
  box-shadow: 2px 0 15px rgba(211, 209, 209, 0.656);
  height: 150px;
}

.lap_box ul li{
  color: #fff;
  text-align: center;
  margin: 10px auto 10px;
}


.lap_list{
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}

.lap_list::-webkit-scrollbar{
  display: none;
}


/* footer */


.mail_icon_footer{
    filter: brightness(150%);
    margin-right: 8px;
}
  
.mail_icon:hover{
    color: rgb(31, 70, 227);
    transform: translate(-10px);
}

.mail_box{
    display: flex;
    align-items: center;
    justify-content: center;
}

.mail_box:hover{
    transform: scale(1.1);
    transition: all 0.5s;
}

  
#mail_id{
    display: flex;
    color: rgb(20, 20, 20) !important;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 12px;
    border-radius: 7px;
    background-color: rgba(155, 155, 155, 0.377);
    backdrop-filter: blur(10px);
    font-style: bold;
    width:fit-content;
    border-color: rgb(78, 78, 78);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.mail_box b{
  font-size: 12px;
}
