* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: cyan #111;
  font-family: sans-serif;
  color: white;
}

*::selection {
  background: darkcyan;
  color: white;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
}

body {
  min-height: 100dvh;
  background: url('https://images.unsplash.com/photo-1478760329108-5c3ed9d495a0?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Zm9uZG8lMjBvc2N1cm98ZW58MHx8MHx8fDA%3D');
  background-position: center;
  background-size: cover;
  padding-bottom: 100px;
}

header {
  padding: 10px;
  background: transparent;
  backdrop-filter: blur(20px);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

h1 {
	color: cyan;
}

main {
  display: block;
  margin: 40px auto;
  width: 70%;
  text-align: center;
}

.box {
  border: 2px solid cyan;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.img {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

h2 {
  margin-top: 7px;
}

.img::after {
  content: "";
  background-image: url("../public/img.png");
  background-position: top;
  background-size: cover;
  mask-image: linear-gradient(180deg, black 70%, transparent);
  border-radius: 20px 20px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.buttons {
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.buttons span {
  padding: 7px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgb(6, 197, 197);
  cursor: default;
  transition: all 0.3s ease-in;
  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px cyan;
  }
}

button {
  padding: 10px;
  border-radius: 7px;
  border: 0;
  background: darkcyan;
  cursor: default;
  font-size: 15px;
  transition: all 0.4s ease-in;
  &:hover {
    background: rgb(3, 179, 179);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
}

@media screen and (max-width: 600px) {
	main {
		width: 90%;
	}
  .buttons {
    flex-direction: column;
    gap: 7px;
  }
}
