/* src/styles.css */

@import url("https://fonts.googleapis.com/css2?family=Figtree&family=Rubik+Doodle+Shadow&display=swap");

body {
  margin: 0;
  padding: 0;
  background-image: url("bg.jpg");
  background-size: 100%;
  background-attachment: fixed;

  /* background-repeat: no-repeat; */
margin-top: 10rem;
  /* background-position: center; */
  font-family: "Figtree", sans-serif;
}
.main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-items: center;
}

.main-container {
  position: relative;
  margin: 20vh auto;
  max-width: 500px;
  width: 80%;
  background: rgba(
    255,
    255,
    255,
    0.221
  ); /* Background color with transparency */
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.131);
}

h1 {
  text-align: center;
  color: #fff;
}

#userForm {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input {
  width: 80%;
  margin-bottom: 10px;
  padding: 8px;
  border: none;
  border-radius: 10px;
  background: rgba(
    255,
    255,
    255,
    0.7
  ); /* Input background color with transparency */
  height: 20px;
}

#resultContainer {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #000;
}

.thala {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.share {
  display: flex;
  flex-direction: row;
  height: 5rem;
  padding: 0;
  align-items: center;
  button {
    background: none;
    display: flex;
    align-items: center;
    justify-items: center;
  }
}

.genButton {
  background-color: black;
}

/* src/style.css */
#foot a {
  text-decoration: none; /* Remove text decoration for all anchor links inside #foot */
  color: white;
}
#subh {
  background: linear-gradient(to right, #00B4DB, #0083B0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#foot a:hover {
  text-decoration: underline; /* Add underline on hover (optional) */
}

.clip {
  display: flex;
  flex-direction: row;
  height: 5rem;
  padding: 0;
  align-items: center;
  justify-items: center;
  button {
    background: none;
    align-items: center;
    justify-items: self-end;
    text-align: center;
  }
}

.linkCopied {
  background: rgba(29, 29, 29, 0.6);
  color: white;
  border-radius: 10px;
  padding: 3px;
  padding-left: 10px;
  padding-right: 10px;
  display: grid;
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-align: center;
  justify-items: center;
  align-items: center;
}
.toast {
  transition: all 0.3s ease-in-out;
}
.hiddenToast {
  position: absolute;
  bottom: -100px;
}
.showToast {
  position: absolute;
  bottom: 60px;
}

#gpt {
  color: #b4d6fd;
}
.promptenter:hover,
  .promptenter:focus {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
  cursor: pointer;
  
}
