#top {
    position: absolute;
    top: 0;
    visibility: hidden;
}

#backToTop {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: #990000;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
    display: flex;
    display: row;
    text-decoration: none;
    & p {
        margin: 0;
    }
}
@media screen and (max-width: 450px) {
    #backToTop {
        border: white solid 1px;
        border-radius: 1rem;
        bottom: 20px;
        & p {
            display: none;
        }
    }
}


header {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-rows: 1fr;
    background-color: #990000;
    color: white;
    padding: .5rem 1rem;
    height: 5rem;

    & h1 {
        grid-row: 1;
        align-self: center;
        font-size: 2rem;
        cursor: pointer;
    }

    & #headerAccountInfo {
        grid-row: 1;
        display: flex;
        flex-direction: row;
        justify-self: end;
        align-items: center;
        cursor: pointer;

        & .userText {
            display: flex;
            flex-direction: column;
            & a {
                color: white;
            }
            & a:hover {
                color: lightgray;
            }

            & .userAddress {
                font-size: 1.25rem;
                margin-right: 1rem;
            }
            & .userAddress:hover {
                color: lightgray;
            }
        }

        & .userPic {
            border-radius: 1.5rem;
            background-color: white;
            width: 3rem;
        }

        & .userPic:hover {
            background-color: lightgrey;
        }
    }
}