@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Cal+Sans&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;
  font-family: "Cal Sans", sans-serif;
}

body{
  height: 100vh;
  background-image: url(roses_leaves_paint_123620_3840x2160.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

img{
  position: absolute;
  right: 105px;
  bottom: -50px;
  z-index: 5;
  transform: rotate(-60deg);
  max-width: 400px;
  pointer-events: none;
}

.card{
  padding: 50px;
  border-radius: 60px;
  background: rgba(68, 183, 210, 0.3);
  backdrop-filter: blur(30px);
  width: 80%;
  color: white;
  box-shadow: 0 5px 26px rgba(0, 0, 0, 0.25),
  inset -5px -5px 25px rgba(255, 255, 255, 0.25),
  inset 5px 5px 25px rgba(255, 255, 255, 0.25);
  padding-bottom: 100px;
}

nav{
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  font-size: 1.75rem;
  cursor: pointer;
  font-weight: bold;
  transition: 0.1s;
}

ul{
  list-style: none;
  display: flex;
  gap: 50px;
}

li{
  opacity: 0.75;
  cursor: pointer;
  font-size: 1.1rem;
  transform: 0.1s;
}

li:hover{
  opacity: 1;
}

.shop{
  opacity: 1;
}

h1{
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

p{
  font-size: 0.9rem;
  max-width: 500px;
  opacity: 0.85;
  margin-bottom: 30px;
}

button{
  border-radius: 30px;
  outline: none;
  border: none;
  padding: 12px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.1s;
}

button:hover{
  background: transparent;
  backdrop-filter: blur(30px);
}
