@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');


:root {
    --primary-dark: #4338CA;
    --white: white;
}

body {
    font-family: 'Montserrat', sans-serif;
   
    color: var(--white);




    background: #DC2424;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #4A569D, #DC2424);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #4A569D, #DC2424); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

main {
    margin: auto;

    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 3rem;
}

h1 {
   
    text-align: center;
    padding: 1rem;
    background-color: #191F42;
}

input,
label {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: larger;
    font-weight: bold;
    box-sizing: border-box;
}



button {
    margin: auto;
    display: block;
    background-color: #191F42;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: large;
    font-weight: bold;
    border: 2px solid white;
    cursor: pointer;
    margin-bottom: 1rem;
    color:  var(--white);
}

#output-box{
    background-color: white;
    width: 100%;
    padding: 1rem;
    font-size: larger;
    font-weight: bold;
    color: #191F42;
    box-sizing: border-box;
}




/**Footer**/
.footer {
 
    background-color: #191F42;
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
position: fixed;
bottom: 0;
right: 0;
left: 0;

}

.footer .link {
    color: white;
}

.footer ul {
    padding-inline-start: 0px;
}

.footer-header {
    font-weight: bold;
    font-size: large;
}

.icon-social {
    font-size: 24px;

}

.footer-list li {
    display: inline;
    margin: 0 0.5rem;
}

/**lists**/
.list-non-bullets {
    list-style: none;
}

.list-item-inline {
    display: inline;
    padding-right: 0rem 0.5rem;
}

.link {
    text-decoration: none;
    padding: 0.5rem 1rem;
}



@media screen and (min-width: 320px) and (max-width: 600px) {

    .footer { 
   position:static;
   border-radius: 1rem; 
    }
}
.loading-img img{
    width: 100%;

}