* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
}

.top_bar {
    position: fixed;
    display: flex;
    width: 100%;
    height: 1.6rem;
    justify-content: space-between;
    align-items: center;
    outline: solid;
    outline-width: 2px;
    outline-color: rgb(95, 145, 160);
}

.nomecond {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20;
    color: rgb(50, 99, 139);
    padding: 0.4rem;
    /*margin: 4px 6px;*/
}

.help {
    color: black;
    text-decoration: none;
    padding: 1rem;
}

.teclado {
    position: fixed;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-start: 0;
    gap: 0.2rem;
    bottom: 0;
    width: 100%;
}

.teclado button {
    padding: 1rem;
    font-size: 1.5rem;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 0;
    outline: solid;
    outline-color: rgb(146, 146, 146);

    overflow: hidden;
    height: 60px;


}
.teclado button:hover{
  background-color: rgb(99, 99, 99);
  color: black;
  cursor: pointer;
  transition: background-color 0.3s;

}

.teclado #enviarbt{
    width: 310%;
    grid-column: auto;
}


.housenumber {

    position: fixed;

    text-align: center;

    bottom: 55%;
    left: calc(50% - 50px);
    margin-left: auto;
    margin-right: auto;
}
.housenumber::after {
    border: 2px;
    border-color: blue;
}

input[type=text] {

    padding: 12px;
    margin: 10px 0;
    
    box-sizing: border-box;
    border: 2px solid red;
    border-radius: 8px;
    bottom: 50%;

    

    font-size: 40px;
    
}