body{
    background-image: url(body.jpg);
    background-color: #dfa13e;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left-top;
    min-height: 100vh;
}
#container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
h1{
    text-align: center;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 50px;
    margin-top: 20px;
}
h3{
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 25px;
}
p{
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    color: #2b2929;
}
.note{
    font-size: 10px;
}
#containerTwo{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
form{
    display: flex;
    flex-direction: column;
    background-color: #0fb490c7;
    border-radius: 20px;
    font-family: 'Ubuntu', sans-serif;
    padding: 50px;
    margin: 10px;
}

#text{
    align-self: center;
    background-color: #18cbf8cd;
    border-radius: 20px;
    padding: 70px;
    margin: 10px;
    width: 30%;
}

#btn {
    background-color: #ffa007;
    color: #fff;
    padding: 8px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
}

#electricBill,#gasBill,#waterBill,#tvLicence {
    font-family: 'Ubuntu', sans-serif;
    padding: 10px;
    font-size: 15px;
    border-radius: 10px;
    border: none;
}
#showTotal {
    display: flex;
    flex-direction: row;
}
#yearBill,#monthBill{
    flex: 1;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    color: #fff;
    background-color: #02ccffb2;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
}
.total{
    color: #fff;
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;
}
.typingText, .typingTextTwo{
    text-align: center;
}
a{
    align-self: center;
}
.subscribeBtn{
    background-color: #0fb490fd;
    color: #fff;
    padding: 10px 40px;
    margin: 20px;
    border: none;
    border-radius: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
}
@media all and (max-width:800px){
    #containerTwo{
        flex-direction: column;
    }
    h1{
        font-size: 40px;
    }
    #text{
        width: auto;
    }
}