@import url(./zero_styles.css);
@import url(./fonts.css);

body {
    padding         : 20px 40px;
    background-color: #fff;
    font-family     : 'Roboto';
}

.verify {
    position: fixed;
    bottom  : 10px;
    left    : 10px;
    width   : 100px;
}

.container {
    background-color: #fff;
    border-radius   : 9px;

}

.content-container {
    max-width     : 1024px;
    margin        : auto;
    padding-bottom: 30px;
}

header {
    padding: 0 0;

    p {
        font-size: 50px;
    }

    a {
        text-decoration: none;
        color          : gray;
    }
}

.header-links {
    display        : flex;
    justify-content: center;
    gap            : 10px;
    flex-wrap      : wrap;
}

.header-link {
    padding         : 10px 20px;
    background-color: dimgrey;
    color           : white;
    text-decoration : none;
    transition      : text-shadow 0.3s ease;
    font-size       : 16px;
    transition      : transform 0.3s ease;
}

.header-link:hover {
    transform  : scale(1.1);
    text-shadow: 0 0 8px #ffffff, 0 0 15px #ffffff, 0 0 20px #ffffff;
    cursor     : pointer;
}

.header-link_active {
    opacity       : 0.5;
    pointer-events: none;
    cursor        : not-allowed;
}

.header-link_active:hover {
    cursor        : not-allowed;
    pointer-events: none;
}

.container-for-nav {
    display        : flex;
    justify-content: space-between;
}

.title-container {
    width: 85%;
}

.nav {
    width           : 15%;
    display         : flex;
    flex-direction  : column;
    align-items     : start;
    gap             : 4px;
    margin-left     : auto;
    padding         : 10px 6px;
    background-color: #f9f9f9;
    border          : 1px solid #aaa;

    a {
        color          : blue;
        text-align     : start;
        position       : relative;
        transition     : color 0.4s ease;
        z-index        : 1;
        text-decoration: none;
        font-size      : 14px;
    }

    a:hover {
        color: black;
    }

    p {
        text-align   : center;
        font-weight  : 700;
        align-self   : center;
        margin-bottom: 10px;
    }

}

main {
    padding      : 20px;
    box-shadow   : 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 9px;
    position     : relative;
}

.title {
    font-size  : 32px;
    font-weight: 600;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.subtitle {
    font-size  : 24px;
    font-weight: 600;
}

.subtitle:target {
    animation        : pulse 2s ease forwards;
    font-size        : 32px;
    text-decoration  : underline;
    scroll-margin-top: 30vh;
}

.green-underline {
    color          : green;
    text-decoration: underline;
}

.link-container {
    display    : flex;
    align-items: center;
    gap        : 4px;

    img {
        width: 20px;
    }

    a {
        text-decoration: none;
        color          : rgb(32, 32, 255);
        font-weight    : 700;
    }

    a:hover {
        text-decoration: underline;
    }
}

.link-container-2 {
    img {
        width         : 20px;
        vertical-align: middle;
    }

    a {
        text-decoration: none;
        color          : rgb(32, 32, 255);
        font-weight    : 700;
    }

    a:hover {
        text-decoration: underline;
    }
}

.recommended {
    font-size       : 12px;
    color           : white;
    text-transform  : uppercase;
    padding         : 3px;
    background-color: green;
    border-radius   : 4px;
}

.verified {
    font-size       : 12px;
    color           : white;
    text-transform  : uppercase;
    padding         : 3px;
    background-color: green;
    border-radius   : 4px;
}

.carefully {
    font-size       : 12px;
    color           : white;
    text-transform  : uppercase;
    padding         : 3px;
    background-color: rgb(216, 142, 3);
    border-radius   : 4px;
    text-decoration : underline;
}

.scam {
    font-size       : 12px;
    color           : white;
    text-transform  : uppercase;
    padding         : 3px;
    background-color: red;
    border-radius   : 4px;
    text-decoration : underline;
}

.suspect {
    font-size       : 12px;
    color           : white;
    text-transform  : uppercase;
    padding         : 3px;
    background-color: dimgrey;
    border-radius   : 4px;
}

.links-list {
    display       : flex;
    flex-direction: column;
    gap           : 20px;
}

.underline {
    display   : block;
    height    : 1px;
    border-top: 2px solid gray;

    margin-top   : 20px;
    margin-bottom: 20px;
}

.link {
    font-weight: 500 !important;
}

.signature {
    text-align: end;
    font-size : 12px;
}

.signature-top {
    text-align: left;
}

.outline {
    display      : block;
    height       : 2px;
    width        : 100%;
    border       : 2px solid gray;
    margin-top   : 30px;
    margin-bottom: 30px;
}

.wallets-container {
    padding: 20px;
    border : 2px solid gray;
    ;
    border-radius: 28px;
}

.visitors-counter {
    position : absolute;
    top      : 18px;
    right    : 20px;
    font-size: 12px;
}

.header__banners {
    display        : flex;
    justify-content: center;
    gap            : 5px;
    flex-wrap      : wrap;
}

.check-link {
    display         : flex;
    flex-direction  : column;
    gap             : 5px;
    align-items     : center;
    background-color: rgb(48, 47, 47);
    border          : dashed yellow;
    color           : white;
    padding         : 20px;
    border-radius   : 10px;

    p {
        font-weight    : 700;
        text-decoration: underline;
    }
}

.check-back {
    background-color: rgb(179, 65, 65);
}