

* {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scrollbar-color: #8ac4d0 #202020;
    scrollbar-width: thin;
}

/* Toggle Container */
.toggle-cont {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    margin: 1rem 2rem 0 0;
}

.toggle-cont i {
    font-size: 2.5rem;
    transition: all 1s ease-in-out;
    cursor: pointer;
}

.toggles.light {
    display: block;
    color: #2C2E43;
    transition: .5s ease-in-out all;
}

.toggles.dark {
    display: none;
    color: #DDF2F1;
    transition: .5s ease-in-out all;
}

/* Heading */
h1 {
    text-align: center;
    font-size: 3rem;
    color: #2c2e43;
    margin-top: 1rem;
    text-shadow: 1px 1px 4px rgba(44, 46, 67, 0.4);
    letter-spacing: 2px;
    transition: 1s ease-in-out all;

}

/* Main Container */
.main-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Input and Button Container */
.main-cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 2px solid #8ac4d0;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f3f4f6, #e9eff1);
    /* background: linear-gradient(180deg, #262626, #222222); */
    height: 8rem;
    width: fit-content;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0px 0px 20px rgba(138, 196, 208, 0.3);
    transition: .7s ease-in-out all;

}

.input-cont {
    margin-right: 2rem;
}

.inputTxt {
    border: none;
    border: 2px solid #ACD3DC;
    border-radius: 2rem;
    height: 2rem;
    width: 15rem;
    padding: 0.5rem 1rem;
    background-color: #fffbf5;
    color: #2C2E43;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.inputTxt::placeholder {
    color: #2C2E43;
    font-style: italic;
}

.inputTxt:focus {
    border: 2px solid #2C2E43;
    background-color: #fff8ea;
    outline: none;
    transition: 0.3s all ease-in-out;
}

/* Button Styling */
.buttonFetch {
    text-align: center;
    height: 2.5rem;
    width: 6rem;
    border: none;
    border-radius: 2rem;
    background-color: #000000;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 0px 4px #8AC4D0;
    display : flex;
    flex-direction : row;
    justify-content : center;
    align-items : center;
}

.buttonFetch:hover {
    background-color: #2dc8e7;
    /* transform: scale(1.1); */
    color: #2c2e43;
    box-shadow: 0px 0px 4px rgba(44, 46, 67, 0.5);
}

/* Response Container */




/* Additional Styles */
body {
    background: linear-gradient(90deg, #e4f9f5, #dbeff0);
    /* background: linear-gradient(90deg, #000000, #1c1c1c); */
    transition: background 0.3s ease-in-out;
    transition: 1s ease-in-out all;

}

.response-cont {
    border: 2px solid #7dfff9;
    background: linear-gradient(180deg, #fdfdfd, #ececee);
    box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.5);
    height: fit-content;
    width: 40rem;
    margin-top: 3rem;
    border-radius: 1rem;
    padding: 1.5rem;
    min-height: 6rem;
    color: #2c2e43;
    font-size: 1.2rem;
    font-weight: 300;
    display: none;
    margin-bottom: 6rem;
}






