@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700&family=DM+Sans&family=Poppins:wght@900&display=swap');*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(18, 37, 53);
}
nav{
    width: 100%;
    height: 14vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav h1{
    margin-left: 20px;
    background-image: linear-gradient(to right, #f2ff00, #7ed67e);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    letter-spacing: -1px;

}
nav .supportBtn{
    margin-right: 10px;
}
.supportBtn a img{
    width: 200px;
    height: 40px;
}
.container {

    padding: 48px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

h2{
    font-size: 3.6vw;
    color: white;
    text-shadow: 2px 2px 2px black;
    
}

.box {
    margin-top: 5vh;
    width: 100%;
}

.box-inputs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

input {
    width: 50%;
    height: 48px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0 12px;
    outline: none;
    font-size: 1rem;
    border: 1px solid #d8d8d8;
    caret-color: #977FEF;
    transition: all 0.2s;
    background-color: white;
    font-family: 'Baloo 2', cursive;


}

input:hover {
    background-color: #f5f5f5;
}

button {
    height: 48px;
    padding: 0 28px;
    font-size: 1rem;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    background-color: #7ed67e;
    border: 1px solid #7ed67e;
    outline: 1px solid #7ed67e;
    color: white;
    font-weight: 600;
    transition: all 0.2s;
}

button:hover {
    opacity: 0.8;
}
.extractedText{
    width: 80vw;
    height: auto;
    margin-top: 4vh;
    font-size: 1rem;
    border-radius: 5px;
    background-color: white;
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
}

 p {
    color: #fafafa;
    font-family: 'DM Sans', sans-serif; 
    margin-top: 3vh;
    opacity: 0.6;
    text-align: center;
    font-size: 1rem;
}
 p a{
    color: #ffffff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    opacity: 1;
}
@media screen and (max-width: 665px) {
    nav h1 {
      font-size: 20px;
    }
    .supportBtn a img {
        width: 100px;
        height: 30px;
    }
  }