@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Syne:wght@400..800&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(wallpapersden.com_starry-landscape-4k-cool-blue-moon_3840x2160.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.card{
  width: 430px;
  border-radius: 15px;
  text-align: center;
  padding: 15px 30px 30px 30px;
  background: transparent;
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}

h1{
  font-family: "Fraunces";
}

p:after{
  position: absolute;
  content: '';
  width: 365px;
  height: 2px;
  border-radius: 3px;
  background-color: white;
  bottom: -15px;
  left: 2.5%;
}

p{
  content: '';
  padding: 10px;
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 25px;
  position: relative;
}

#author{
  content: '';
  position: absolute;
  right: 35px;
  bottom: 90px;
  font-family: "Syne";
}

button{
  margin-top: 30px;
  border-radius: 15px;
  outline: none;
  border: 0.5px solid;
  width: 50%;
  height: 35px;
  background-color: transparent;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
