@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;900&family=Roboto+Mono:ital,wght@0,400;1,700&display=swap');
body{
    font-family: 'Roboto Mono', monospace;
    background-color: #252525;
    color: whitesmoke;
    scroll-behavior: smooth;
}
.noscroll::-webkit-scrollbar {
    display: none;
} 
.noscroll {
-ms-overflow-style: none;
scrollbar-width: none; 
}
#fbutton{
    position: fixed;
    right: 15px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 20px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: #203239;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
    } 
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar {
    width: 16px;
}
.dwn{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width:100%;
    min-width:300px;
    max-width:800px;
    border-radius:10px;
    height:70px;
    background-color:#FF0000;
    color:whitesmoke;
    border:0px;
}
.dwn:hover{
    background-color: #AF0404;
    cursor: pointer;
    animation-name: b;
    animation-duration: 0.2s;
}
.item{
    justify-self: flex-start;
}
img{
    width: 50px;
    height: 50px;
    border-radius:10px;
    max-width:500px;
    margin-left: 8px;
}
i{
    font-size: 26px;
    color: whitesmoke;
}
button{
    border-radius: 10px;
    background-color: #e10505;
    border: none;
}
button:hover{
    background-color: #AF0404;
    animation-name: b;
    animation-duration: 0.2s;
}
@keyframes b {
    0% {
        background-color: #e10505;
    }
    50% {
        background-color: #c80505;
    }
    100% {
        background-color: #AF0404;
    }
}

.typewriter h1 {
    overflow: hidden;
    border-right: .1em solid #e10505;
    white-space: nowrap; 
    margin: 0 auto;
    letter-spacing: .15em;
    animation: 
      typing 3.5s steps(30, end),
      blink-caret .5s step-end infinite;
}
  
 @keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
  
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #e10505; }
}