body {
    background-color: white;
    background-image: url("assets/silk.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

#heading {
    position: absolute;
    top: 7%;
    left: 43%;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #fff, 4px 4px 8px rgba(0,0,0,0.2);
}

#table {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    align-items: center;
    position: absolute;
    top: 1px
}

#title {
    width: 100%;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    padding: 15px;
    font-family: 'Arial';
    border-radius: 5px;
}

#btn {
    position: absolute;
    top: 42%;
    left: 44%;
    border: none;
    background-color: transparent;
    font-size: 20px;
    cursor: pointer;
}


#input, #output {
    display: flex;
    flex-direction: column;
    margin: 5%;
    width: 100%;
}

#input {
    padding-left: 10%;
}

#output {
    padding-right: 10%;
}

#modes {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 10px;
}

#Plain, #Formal {
    width: 40%;
    padding: 10px;
    font-family: 'Arial';
    font-size: 15px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #fff, 4px 4px 8px rgba(0,0,0,0.2);
    margin-left: 20px ;
}


#inputText {
    background-color: rgba(0,0,0,0.05);
    width: 100%;
    height: 200px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 5%;
    resize: none;


}

#outputText {
    margin-top: 20px;
    background-color: rgb(0, 0,0, 0.1);
    height: 200px;
    width: 100%;
    border-radius: 5%;
    resize: none;
}

#outputText, #inputText {
    font-family: 'Arial';
    font-size: large; 
    padding: 15px; 
    letter-spacing: 2px;
}

#inputText, #outputText, #Plain, #Formal, #title {
    box-shadow: 2px 4px 1px rgba(0,0,0,0.3);
}

#tagline {
    position: absolute;
    bottom: 10%;
    right: 32%;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #fff, 4px 4px 8px rgba(0,0,0,0.2);
}