* {
    padding: 0;
    margin: 0;
}

body {
    background: linear-gradient(to right, blue, lightgreen);
}

#talk {
    position: relative;
    display: block;
    margin: auto;
    width: 200px;
    height: 100px;
    font-size: 40px;
    top: 20px;
    background-color: black;
    color: red;
}

#talk:hover{
    background-color: gray;
}

#result {
    position: relative;
    text-align: center;
    font-family: sans-serif;
    font-size: 60px;
    top: 50px;

    color: rgba(255, 255, 255, .65)
    
}

#tex {
    position: relative;
    display: block;
    top: 440px;
    left: 6px;
}