*{
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Kalam&display=swap');

:root{
--blur-color:rgb(233, 221, 221, 0.5);
--primary-color:rgba(244, 116, 105, 0.901);
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kalam', cursive;
}
nav h1{
    margin-top: 0;
    color: aliceblue;
    padding: 1rem 1rem;
    padding-top: 3rem;
}


textarea{
  display: block;
  max-width:60vw;
  height :10rem;
  
  font-family: inherit;
  font-size: small;
  /* transform: translate(-77%,-20%); */
  backdrop-filter: blur(1px);
  background-color:var(--blur-color) ;
}
button{
  border: 1px solid var(--blur-color);
  backdrop-filter: blur(1px);
  background-color:var(--blur-color) ;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  font: size 0.25rem;;
  font-weight: bold;
  cursor: pointer;
  margin-top: 2rem;

}

#output-area{
  font-family: inherit;
  font-size: small;
  margin: 1rem 0;
  max-width:60vw ;
  height: 5rem;
  background-color: aqua;
  overflow: scroll;
  border: 1px solid grey;
  border-radius: 0.15rem;
  backdrop-filter: (1px);
  background-color: var(--blur-color);
}

.background-img{
    background-image:url(img/groot.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
}

nav{
  position: relative;
  width:100vw;
  top: 1%;
  left: 50%;
  transform: translate(-50%,-50%);
  backdrop-filter: blur(10px);
  background-color:var(--blur-color) ;
}

.footer {
  position: fixed;
  backdrop-filter: blur(10px);
  background-color:var(--blur-color) ;
  width: 100vw; /* Adjust the width as needed */
  max-height: fit-content; /* Adjust the height as needed */
  bottom: 0%;
  padding: 0.5rem;
}


  /* .navbar,
  .main-content,
  .footer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
    background-color: rgba(230, 222, 222, 0.5); /* Adjust the opacity and color as needed */
  /* } */
  
  /* .navbar {
    width: 80%; /* Adjust the width as needed */
    /* height: 60px; /* Adjust the height as needed */
  } */
   */
  .main-content {
    width: 80%; /* Adjust the width as needed */
    height: 400px; /* Adjust the height as needed */
    text-align: left;
  }
  

   */