html
{
    background-image: url("back.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100%;
}

body
{
    text-align: center;
    font-family: arial;
    font-size: 18px;
}

li
{
    list-style: none;
    line-height: 2em;
    text-align: left;
}

.header
{
    background: #f4f4f4;
    border-bottom: #ccc 3px solid;
    padding: 20px;
}

#container
{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    height: fit-content;
}

#outputDiv
{
    margin-top: 35px;
    width: 80%;
    height: 300px;
    overflow-y: auto;
    background: rgba(0,0,0,0.5);
    color: white;
    border: black solid 1px;
    margin-left: auto;
    margin-right: auto;
}

input
{
    width: 250px;
    padding: 7px;
    outline: none;
}

button
{
    width: 200px;
    padding: 15px;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 25px;
    border: 2px solid transparent;
    
}

button:hover
{
    background-color: black;
    color: white;
    border-color: white;
}

a
{
    display: none;
}



@media only screen and (max-width: 600px) 
{
    button
    {
        width: 150px;
        padding: 10px;
        font-size: 12px;
    }
    
    textarea
    {
        width: -webkit-fill-available;
    }
    
    #outputDiv
    {
        width: 92%;
    }
}
