
/* CSS reset */
*{
  margin: 0;
  padding: 0;
}
body{
  background:url("bg/bg3stop.jpg")no-repeat center center/cover;
  color: white;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  overflow: hidden;
}
.Stopwatch {
   width: 100%;
   height: 100vh;
   display: flex;
  justify-content: center;
  align-items: center;
}
.Stopwatch h1{
    font-family: cursive;
    font-weight: 800;
    font-size: 5rem;
    position: relative;
}
.Stopwatch h1::before{
 
  content: "";
  position: absolute;
  background: linear-gradient(35deg ,#e22042 , #396694);
  width: 159px;
  height: 187px;
  border-radius: 50% 0% 50%;
  top: -42px;
  left: 222px;

}
.Stopwatch h1::after{
    content: "Stopwatch";
    position: absolute;
   
    top: 0px;
    left: 5px;
    -webkit-text-stroke-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
}



.container{
  width: 500px;
  height: 250px;
  flex-direction: column;
}
.container h2{
  font-size: 5rem;
  margin: 20px 6px;
}
button{
  width: 145px;
  height: 40px;
  font-size: 1rem;
  color: white;
  outline: none;
  border-radius: 25%;
  cursor: pointer;
  font-family: 'Sansita Swashed', cursive;
  background: linear-gradient(to right,rgb(142, 45, 226), rgb(226 73 73));
  margin: 25px 0px;
  
} 

