body{
    background-color: #3943B7;
    color: white;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    display: flex;
}
.divhome{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2B061E;
}
.typing {
    font-family: "Libre Caslon Display", serif;
    font-size: 2em;
    width: 473px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #ffffff;
    animation: typing 2s steps(12, end), cursor .2s steps(12, end) infinite;
}
@keyframes typing {
    from { width: 0 }
}
@keyframes cursor {
    50% { border-color: transparent }
}
.b1{
    
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2B061E;
    border: 0;
    border-color: black;
    color: white;
    font-size: 20px
}
.b1:hover{
    background-color: #2e001e;
}
.open {
    width: 473px;
    margin: 0 auto;
    overflow: hidden;
    display: inline-flex;
    animation-name: open;
}
@keyframes open {
    from { width: 0 }
}
