html {
    scroll-behavior: smooth;
}
img {
    height: auto;
    width: 100%;
    animation: fadeIn 3s;
}
body {
    background-color: #040404;
}
p {
    font-family: 'Times New Roman', Times, serif;
    font-size: x-small;
    color: #0c0c0c;
}
.top {
    margin-top: 550px;
    margin-left: 1300px;
    position: fixed;
    background-color: #232323;  
    text-align: center;
    width: 150px;   
    height: 150px;
    z-index: 99999;
    border-radius: 100%;
}

@keyframes fadeIn {
    from { opacity: 0;}
    to {opacity: 1;}
}