@media screen and (min-width: 640px) {
}

@media screen and (min-width: 640px) and (orientation: landscape) {
}

@media screen and (min-width: 1024px) {
}

@media screen and (min-width: 1289px) {
}

.account__info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0 1rem;
    text-align: center;
    color: white;
}

.account__info--name span {
    text-decoration: underline;
}

.account__info--go-coin span {
    color: #b3d7ae;
}

.account__info--action {
    height: 100%;
}

    .account__info--action a:hover {
        background-color: transparent;
    }

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Maven Pro", "Helvetica Neue", Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #b3d7ae;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #b3d7ae;
    }
