.container {
    margin-top: 50px;
    margin-bottom: 70px;
    height: auto;
    padding: 0px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: lightgray;
}
/*navbar edit*/
.navbar{
    border: 2px solid white;
    border-radius: 20px 20px 0 0px;
    height: 80px;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    background-color: black;
    margin-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
}

.navbar i{
    font-size: 20px;
    background-color: aliceblue;
    border: 1px solid;
    height: 40px;
    width: 40px;
    padding-top: 10px;
    border-radius: 70px;
    box-shadow: 0 1px 10px rgb(255, 255, 255);
}

.navbar i:hover{
    background-color: gray;
    transform: translatey(-15px);
    width: 50px;
    width: 50px;
    font-size: 25px;
    box-shadow: 0 15px 10px rgb(255, 255, 255);
}

/*navbar end*/

.typing {
    color: #000;
    font-size: 28px;
    white-space: nowrap;
    overflow: hidden;
    border-right: #000;
    font-weight: bold;
    width: 0;
    animation: typing 3s steps(20,end)
     forwards, blink 0.7s infinite;
}

@keyframes typing {
    from {width: 0;} to {width: 25ch;}
}

@keyframes blink {
    50% {border-color: transparent;}
}