html{
    scroll-behavior: smooth;
    
}
body{
    height: 2000px;
    background-image: url('./img/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
svg{
    width: 25px;
    height: 25px;
}
#scrollBtn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;
    outline: none;
    background-color: rgb(199, 25, 48);
    cursor: pointer;
    color: white;
    padding: 15px;
    border-radius: 50%;
    z-index: 100;
}
#scrollBtn:hover{
    background-color: rgb(88, 45, 168);
}