/*all formatting*/
* {
    font-family: 'Poppins', sans-serif;
}

/********** home button *************/
#home{
    background: rgba(49, 44, 44, 0.62);
    border: 2px white solid;
    width: 60px;
    height: 60px;
    border-radius: 100%;

    position: fixed;
    bottom: 50px;
    right: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    transform: rotate(0deg);
    transition: 1s;
}

#home a{
    opacity: 255;
    text-decoration: none;
    margin: 0;
    font-size: 50px;
}

#home:hover{
    cursor: pointer;
    width: 50px;
    height: 50px;

    transform: rotate(5deg);
    transition: 0.5s;
}