.go-to-top {
    width: 60px;
    height: 60px;
    background-color: #041C3F;
    display: flex !important;
    align-items: center !important;
    border-radius: 100px;
    box-shadow: 0px 0px 5px #041c3f80;
    transition: 0.5s;
    z-index: 999999999999999999999;
    align-items: center;
    justify-content: center;
}

.go-to-top:hover {
    background-color: #f5b904;
}

.go-to-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    background: #041C3F;
    color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    display: none;
}

.go-to-top a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.go-to-top:hover {
    transform: translate(0px, -5px);
    box-shadow: 0px 0px 20px #041c3f80;
}